| /openjdk7/jaxp/src/com/sun/xml/internal/stream/events/ |
| H A D | StartDocumentEvent.java | 62 public StartDocumentEvent(String encoding, String version, boolean standalone){ argument 64 init(encoding,version,standalone,null); 67 public StartDocumentEvent(String encoding, String version, boolean standalone,Location loc){ argument 69 init(encoding, version, standalone, loc); 71 protected void init(String encoding, String version, boolean standalone,Location loc) { argument 75 this.fStandalone = standalone; 155 s = s + " standalone='yes'?>"; 157 s = s + " standalone='no'?>";
|
| H A D | XMLEventFactoryImpl.java | 168 public javax.xml.stream.events.StartDocument createStartDocument(String encoding, String version, boolean standalone) { argument 169 StartDocumentEvent event = new StartDocumentEvent(encoding, version, standalone);
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/ |
| H A D | DTDGrammarBucket.java | 96 // is the "active" grammar standalone? 134 // is the active grammar standalone? This must live here because 137 void setStandalone(boolean standalone) { argument 138 fIsStandalone = standalone;
|
| H A D | XMLDTDValidator.java | 649 * @param standalone The standalone value, or null if not specified. 654 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) argument 657 // save standalone state 658 fGrammarBucket.setStandalone(standalone != null && standalone.equals("yes")); 662 fDocumentHandler.xmlDecl(version, encoding, standalone, augs); 1317 /** Checks entities in attribute values for standalone VC. */ 1475 /** Returns true if invalid standalone attribute definition. */
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/ |
| H A D | XMLDTDScanner.java | 68 * @param standalone True if the document was specified as standalone. 78 public boolean scanDTDInternalSubset(boolean complete, boolean standalone, argument
|
| /openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
| H A D | XSLOutputAttributes.java | 40 * standalone 99 * @return a value of "yes" if the <code>standalone</code> delaration is to 172 * Sets the value coming from the xsl:output standalone stylesheet attribute. 173 * @param standalone a value of "yes" indicates that the 174 * <code>standalone</code> delaration is to be included in the output 177 public void setStandalone(String standalone); argument
|
| H A D | ToXMLStream.java | 142 String standalone; 146 standalone = " standalone=\"" + getStandalone() + "\""; 150 standalone = ""; 161 writer.write(standalone); 173 // standalone, or a doctype system or public is 332 * element. The whitespace is not significant is the output is standalone
|
| H A D | SerializerBase.java | 136 * The standalone value for the doctype. 141 * True if standalone was specified. 146 * Determine if the output is a standalone. 629 * Sets the value coming from the xsl:output standalone stylesheet attribute. 630 * @param standalone a value of "yes" indicates that the 631 * <code>standalone</code> delaration is to be included in the output 635 public void setStandalone(String standalone) argument 637 if (standalone != null) 640 setStandaloneInternal(standalone); 644 * Sets the XSL standalone attribut 648 setStandaloneInternal(String standalone) argument [all...] |
| H A D | ToUnknownStream.java | 734 public void setStandalone(String standalone) argument 736 m_handler.setStandalone(standalone);
|
| H A D | EmptySerializer.java | 622 public void setStandalone(String standalone) argument
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/ |
| H A D | StartDocumentEvent.java | 95 * Returns if this XML is standalone 96 * @return the standalone state of XML, defaults to "no" 102 * Returns true if the standalone attribute was set in 118 public void setStandalone(boolean standalone) { argument 120 _standalone = standalone; 162 s = s + " standalone='yes'?>"; 164 s = s + " standalone='no'?>";
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/ |
| H A D | XMLScanner.java | 190 /** Symbol: "standalone". */ 191 protected final static String fStandaloneSymbol = "standalone".intern(); 371 * [32] SDDecl ::= S 'standalone' Eq (("'" ('yes' | 'no') "'") 381 * encoding and standalone pseudo attribute values 394 String standalone = null; 480 standalone = fString.toString(); 482 if (!standalone.equals("yes") && !standalone.equals("no")) { 483 reportFatalError("SDDeclInvalid", new Object[] {standalone}); 496 standalone [all...] |
| H A D | XMLNamespaceBinder.java | 473 * @param standalone The standalone value, or null if not specified. 478 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) argument 481 fDocumentHandler.xmlDecl(version, encoding, standalone, augs);
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/ |
| H A D | XMLMessages_it.properties | 74 SDDeclInvalid = Il valore della dichiarazione del documento standalone deve essere \"yes\" o \"no\", non \"{0}\". 259 MSG_ATTVALUE_CHANGED_DURING_NORMALIZATION_WHEN_STANDALONE = Il valore \"{1}\" dell''attributo \"{0}\" non deve essere modificato dalla normalizzazione (in \"{2}\") in un documento standalone. 263 MSG_DEFAULTED_ATTRIBUTE_NOT_SPECIFIED = L''attributo \"{1}\" per il tipo di elemento \"{0}\" ha un valore predefinito e deve essere specificato in un documento standalone. 269 MSG_EXTERNAL_ENTITY_NOT_PERMITTED = Il riferimento all''entit\u00E0 esterna \"{0}\" non \u00E8 consentito in un documento standalone. 275 MSG_REFERENCE_TO_EXTERNALLY_DECLARED_ENTITY_WHEN_STANDALONE = Il riferimento all''entit\u00E0 \"{0}\" dichiarata in un''entit\u00E0 esterna analizzata non \u00E8 consentito in un documento standalone. 277 MSG_WHITE_SPACE_IN_ELEMENT_CONTENT_WHEN_STANDALONE = Non deve esistere nessuno spazio tra gli elementi dichiarati in un'entit\u00E0 esterna analizzata con il contenuto dell'elemento in un documento standalone.
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/ |
| H A D | XMLDocumentFilterImpl.java | 179 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException { argument 180 next.xmlDecl(version, encoding, standalone, augs);
|
| H A D | TeeXMLDocumentFilterImpl.java | 212 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException { argument 213 side.xmlDecl(version, encoding, standalone, augs); 214 next.xmlDecl(version, encoding, standalone, augs);
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/ |
| H A D | XMLDocumentHandler.java | 80 * @param standalone The standalone value, or null if not specified. 86 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) argument
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/ |
| H A D | TeeXMLDocumentFilterImpl.java | 171 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException { argument 172 side.xmlDecl(version, encoding, standalone, augs); 173 next.xmlDecl(version, encoding, standalone, augs);
|
| /openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/ |
| H A D | OutputFormat.java | 200 * True if the document type should be marked as standalone. 615 * Returns true if the document type is standalone. 625 * Sets document DTD standalone. The public and system 627 * serialized as standalone. 629 * @param standalone True if document DTD is standalone 631 public void setStandalone( boolean standalone ) 633 _standalone = standalone;
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/ |
| H A D | StAXEventFactory.java | 273 * @param standalone the status of standalone may be set to "true" or "false" 276 public StartDocument createStartDocument(String encoding, String version, boolean standalone) { argument 278 event.setStandalone(standalone);
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/ |
| H A D | DefaultDocument.java | 171 * document is standalone. 172 * <br> This attribute represents the property [standalone] defined in . 180 * document is standalone. 181 * <br> This attribute represents the property [standalone] defined in . 184 public void setXmlStandalone(boolean standalone){ argument
|
| H A D | DefaultXMLDocumentHandler.java | 89 * @param standalone The standalone value, or null if not specified. 95 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) argument
|
| /openjdk7/jaxp/src/javax/xml/stream/ |
| H A D | XMLEventFactory.java | 353 * @param standalone the status of standalone may be set to "true" or "false" 358 boolean standalone); 356 createStartDocument(String encoding, String version, boolean standalone) argument
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/ |
| H A D | AbstractXMLDocumentParser.java | 130 * @param standalone The standalone value, or null if not specified. 135 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) argument
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/ |
| H A D | DOMResultAugmentor.java | 114 public void xmlDecl(String version, String encoding, String standalone, argument
|