Searched refs:notation (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLEntityDecl.java84 /** notation */
85 public String notation; field in class:XMLEntityDecl
108 * @param notation
113 String baseSystemId, String notation,
115 setValues(name, publicId, systemId, baseSystemId, notation, null, isPE, inExternal);
126 * @param notation
131 String baseSystemId, String notation,
137 this.notation = notation;
151 this.notation
112 setValues(String name, String publicId, String systemId, String baseSystemId, String notation, boolean isPE, boolean inExternal) argument
130 setValues(String name, String publicId, String systemId, String baseSystemId, String notation, String value, boolean isPE, boolean inExternal) argument
[all...]
H A DXMLDTDProcessor.java946 // VC: Notation Attributes: all notation names in the
1191 * @param notation The name of the notation.
1198 String notation,
1203 fNDataDeclNotations.put(name, notation);
1208 fDTDGrammar.unparsedEntityDecl(name, identifier, notation, augs);
1210 fDTDHandler.unparsedEntityDecl(name, identifier, notation, augs);
1216 * A notation declaration
1218 * @param name The name of the notation.
1220 * pertinent to this notation
1197 unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augs) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDNotationTraverser.java33 * The notation declaration schema component traverser.
35 * <notation
42 * </notation>
79 XSNotationDecl notation = new XSNotationDecl();
80 notation.fName = nameAttr;
81 notation.fTargetNamespace = schemaDoc.fTargetNamespace;
82 notation.fPublicId = publicAttr;
83 notation.fSystemId = systemAttr;
106 notation.fAnnotations = annotations;
112 if (grammar.getGlobalNotationDecl(notation
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DEntity.java174 public String notation; field in class:Entity.ExternalEntity
187 String notation, boolean inExternalSubset) {
190 this.notation = notation;
204 return notation != null;
211 notation = null;
218 notation = null;
225 notation = entity.notation;
186 ExternalEntity(String name, XMLResourceIdentifier entityLocation, String notation, boolean inExternalSubset) argument
H A DXMLEntityStorage.java302 * @param notation The name of the notation.
308 String baseSystemId, String notation) {
312 Entity entity = new Entity.ExternalEntity(name, new XMLResourceIdentifierImpl(publicId, systemId, baseSystemId, null), notation, fInExternalSubset);
306 addUnparsedEntity(String name, String publicId, String systemId, String baseSystemId, String notation) argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DNotationDeclarationImpl.java55 public NotationDeclarationImpl(XMLNotationDecl notation){ argument
56 this.fName = notation.name;
57 this.fPublicId = notation.publicId;
58 this.fSystemId = notation.systemId;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DExternalEntity.java38 String notation; field in class:ExternalEntity
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DNotationImpl.java57 visitor.notation(this);
61 return function.notation(this);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/visitor/
H A DXSFunction.java57 T notation( XSNotation notation ); method in interface:XSFunction
H A DXSVisitor.java53 void notation( XSNotation notation ); method in interface:XSVisitor
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DComponentNameFunction.java117 * @see com.sun.xml.internal.xsom.visitor.XSFunction#notation(XSNotation)
119 public String notation(XSNotation notation) { argument
120 String name = notation.getName();
122 return name + " " + nameGetter.notation( notation );
H A DXSFunctionFilter.java97 public T notation(XSNotation notation) { argument
98 return core.notation(notation);
H A DXSFinder.java119 * @see com.sun.xml.internal.xsom.visitor.XSFunction#notation(com.sun.xml.internal.xsom.XSNotation)
121 public Boolean notation(XSNotation notation) { argument
H A DNameGetter.java142 public String notation( XSNotation n ) { method in class:NameGetter
143 return localize("notation");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DClassBinderFilter.java87 public CElement notation(XSNotation xsNotation) { method in class:ClassBinderFilter
88 return core.notation(xsNotation);
H A DRefererFinder.java135 public void notation(XSNotation notation) {} argument
H A DColorBinder.java82 public final void notation(XSNotation xsNotation) { method in class:ColorBinder
H A DUnusedCustomizationChecker.java196 public void notation(XSNotation notation) { argument
197 check(notation);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DAbstractAxisImpl.java135 public Iterator<T> notation(XSNotation notation) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A Dnotation.java45 class notation extends NGCCHandler { class in inherits:NGCCHandler
61 public notation(NGCCHandler parent, NGCCEventSource source, NGCCRuntimeEx runtime, int cookie) { method in class:notation
67 public notation(NGCCRuntimeEx runtime) { method in class:notation
146 if(($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("notation"))) {
177 if(($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("notation"))) {
188 if((($ai = $runtime.getAttributeIndex("","name"))>=0 && ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("notation")))) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDHandler.java299 * @param notation The name of the notation.
307 String notation, Augmentations augmentations)
311 * A notation declaration
313 * @param name The name of the notation.
315 * pertinent to this notation.
305 unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augmentations) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DUnparsedEntityHandler.java172 XMLResourceIdentifier identifier, String notation,
179 fDTDHandler.unparsedEntityDecl(name, identifier, notation, augmentations);
171 unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augmentations) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaWriter.java324 public void notation( XSNotation notation ) { method in class:SchemaWriter
325 println(MessageFormat.format("<notation name='\"0}\" public =\"{1}\" system=\"{2}\" />",
326 notation.getName(), notation.getPublicId(), notation.getSystemId()));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDTDScannerImpl.java1524 String notation = null;
1539 notation = fEntityScanner.scanName();
1540 if (notation == null) {
1572 if (notation != null) {
1573 fEntityStore.addUnparsedEntity(name, publicId, systemId, baseSystemId, notation);
1583 if (notation != null) {
1585 notation, null);
1720 * Scans a notation declaration
1738 // notation name
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDTDParser.java281 * @param notation The name of the notation.
290 String notation, Augmentations augmentations)
295 * A notation declaration
297 * @param name The name of the notation.
299 * pertinent to this notation.
288 unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augmentations) argument

Completed in 230 milliseconds

12