1 package com.icl.saxon.om; 2 3 7 8 public class Namespace { 9 10 13 14 public static final String NULL = ""; 15 public static final short NULL_CODE = 0; 16 17 20 public static final String XML = "http://www.w3.org/XML/1998/namespace"; 21 public static final short XML_CODE = 1; 22 23 28 public static final String XMLNS = "http://www.w3.org/2000/xmlns/"; 29 30 33 public static final String XSLT = "http://www.w3.org/1999/XSL/Transform"; 34 public static final short XSLT_CODE = 2; 35 36 39 public static final String SAXON = "http://icl.com/saxon"; 40 public static final short SAXON_CODE = 3; 41 42 45 public static final String DTD = "http://icl.com/saxon/dtd"; 46 47 50 public static final String EXSLT_COMMON = "http://exslt.org/common"; 51 52 55 public static final String EXSLT_MATH = "http://exslt.org/math"; 56 57 60 public static final String EXSLT_SETS = "http://exslt.org/sets"; 61 62 65 public static final String EXSLT_DATES_AND_TIMES = "http://exslt.org/dates-and-times"; 66 67 70 public static final String EXSLT_FUNCTIONS = "http://exslt.org/functions"; 71 public static final short EXSLT_FUNCTIONS_CODE = 4; 72 75 76 public static final String MICROSOFT_XSL = "http://www.w3.org/TR/WD-xsl"; 77 78 } 79 80 | Popular Tags |