/** * $Id: $ * $Date: $ * */ package org.xmlsh.xproc.compiler; import net.sf.saxon.s9api.QName; class Names { static final String kXPROC_NS = "http://www.w3.org/ns/xproc" ; // Node names static final QName kPIPELINE = new QName(kXPROC_NS , "pipeline" ); static final QName kDECLARE_STEP = new QName(kXPROC_NS , "declare-step" ); static final QName kLIBRARY = new QName(kXPROC_NS , "library" ); static final QName kINPUT = new QName(kXPROC_NS , "input" ); static final QName kOUTPUT = new QName(kXPROC_NS , "output" ); static final QName kOPTION = new QName(kXPROC_NS , "option" ); static final QName kLOG = new QName(kXPROC_NS , "log" ); static final QName kVARIABLE = new QName(kXPROC_NS , "variable"); static final QName kEMPTY = new QName(kXPROC_NS , "empty" ); static final QName kDOCUMENT = new QName(kXPROC_NS , "document" ); static final QName kINLINE = new QName(kXPROC_NS , "inline" ); static final QName kDATA = new QName(kXPROC_NS , "data"); static final QName kPIPE = new QName(kXPROC_NS , "pipe" ); static final QName kSERIALIZATION = new QName(kXPROC_NS , "serialization" ); static final QName kNAMESPACES = new QName(kXPROC_NS , "namespaces" ); static final QName kFOR_EACH = new QName(kXPROC_NS , "for-each" ); static final QName kVIEWPORT = new QName(kXPROC_NS , "viewport" ); static final QName kCHOOSE = new QName(kXPROC_NS , "choose" ); static final QName kGROUP = new QName(kXPROC_NS , "group" ); static final QName kTRY = new QName(kXPROC_NS , "try" ); static final QName kXPATH_CONTEXT = new QName(kXPROC_NS , "xpath-context" ); static final QName kWHEN = new QName(kXPROC_NS , "when" ); static final QName kOTHERWISE = new QName(kXPROC_NS , "otherwise" ); static final QName kITERATION_SOURCE = new QName(kXPROC_NS , "iteration-source" ); static final QName kCATCH = new QName(kXPROC_NS , "catch" ); static final QName kIMPORT = new QName(kXPROC_NS , "import" ); static final QName kWITH_OPTION = new QName(kXPROC_NS , "with-option" ); static final QName kWITH_PARAM = new QName(kXPROC_NS , "with-param" ); } // // //Copyright (C) 2008,2009 , David A. Lee. // //The contents of this file are subject to the "Simplified BSD License" (the "License"); //you may not use this file except in compliance with the License. You may obtain a copy of the //License at http://www.opensource.org/licenses/bsd-license.php // //Software distributed under the License is distributed on an "AS IS" basis, //WITHOUT WARRANTY OF ANY KIND, either express or implied. //See the License for the specific language governing rights and limitations under the License. // //The Original Code is: all this file. // //The Initial Developer of the Original Code is David A. Lee // //Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved. // //Contributor(s): none. //