1 16 17 package org.apache.xerces.impl.xs; 18 19 import org.apache.xerces.xs.XSAnnotation; 20 import org.apache.xerces.xs.XSConstants; 21 import org.apache.xerces.xs.XSNamespaceItem; 22 import org.apache.xerces.xs.XSNotationDeclaration; 23 24 33 public class XSNotationDecl implements XSNotationDeclaration { 34 35 public String fName = null; 37 public String fTargetNamespace = null; 39 public String fPublicId = null; 41 public String fSystemId = null; 43 44 public XSAnnotationImpl fAnnotation = null; 46 47 50 public short getType() { 51 return XSConstants.NOTATION_DECLARATION; 52 } 53 54 58 public String getName() { 59 return fName; 60 } 61 62 67 public String getNamespace() { 68 return fTargetNamespace; 69 } 70 71 74 public String getSystemId() { 75 return fSystemId; 76 } 77 78 82 public String getPublicId() { 83 return fPublicId; 84 } 85 86 89 public XSAnnotation getAnnotation() { 90 return fAnnotation; 91 } 92 93 96 public XSNamespaceItem getNamespaceItem() { 97 return null; 98 } 99 100 } | Popular Tags |