Searched defs:version (Results 151 - 175 of 310) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DStAXEvent2SAX.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
79 private String version = null; field in class:StAXEvent2SAX
155 version = ((StartDocument)event).getVersion();
291 return version;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DCoreDOMImplementationImpl.java55 * @version $Id: CoreDOMImplementationImpl.java,v 1.6 2010-11-01 04:39:37 joehw Exp $
100 * @param version The version number of the feature being tested.
105 * feature and version.
107 public boolean hasFeature(String feature, String version) { argument
109 boolean anyVersion = version == null || version.length() == 0;
115 // castable DOMImplementation.getFeature(feature, version). Without a
118 && (anyVersion || version.equals("3.0"))) {
143 || version
282 getFeature(String feature, String version) argument
[all...]
H A DEntityImpl.java70 /** Serialization version. */
94 protected String version; field in class:EntityImpl
199 * the version number of this entity, when it is an external parsed entity.
206 return version;
301 * version - An attribute specifying, as part of the text declaration,
302 * the version number of this entity, when it is an external parsed entity.
309 version = value;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultDocument.java189 * An attribute specifying, as part of the XML declaration, the version
191 * <br> This attribute represents the property [version] defined in .
193 * NOT_SUPPORTED_ERR: Raised if the version is set to a value that is
201 * An attribute specifying, as part of the XML declaration, the version
203 * <br> This attribute represents the property [version] defined in .
205 * NOT_SUPPORTED_ERR: Raised if the version is set to a value that is
209 public void setXmlVersion(String version) throws DOMException{ argument
H A DDefaultNode.java118 public boolean isSupported(String feature, String version) { argument
207 public Object getFeature(String feature, String version){ argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DTeeXMLDocumentFilterImpl.java166 public void textDecl(String version, String encoding, Augmentations augs) throws XNIException { argument
167 side.textDecl(version, encoding, augs);
168 next.textDecl(version, encoding, augs);
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);
H A DUnparsedEntityHandler.java42 * @version $Id: UnparsedEntityHandler.java,v 1.6 2010-11-01 04:40:07 joehw Exp $
80 public void textDecl(String version, String encoding, argument
83 fDTDHandler.textDecl(version, encoding, augmentations);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMResultAugmentor.java114 public void xmlDecl(String version, String encoding, String standalone, argument
188 public void textDecl(String version, String encoding, Augmentations augs) argument
H A DDOMResultBuilder.java212 public void xmlDecl(String version, String encoding, String standalone, argument
287 public void textDecl(String version, String encoding, Augmentations augs) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDTDParser.java110 * @param version The XML version, or null if not specified.
115 public void textDecl(String version, String encoding) throws XNIException { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DTeeXMLDocumentFilterImpl.java207 public void textDecl(String version, String encoding, Augmentations augs) throws XNIException { argument
208 side.textDecl(version, encoding, augs);
209 next.textDecl(version, encoding, augs);
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);
H A DXMLDocumentFilterImpl.java175 public void textDecl(String version, String encoding, Augmentations augs) throws XNIException { argument
176 next.textDecl(version, encoding, augs);
179 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException { argument
180 next.xmlDecl(version, encoding, standalone, augs);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDHandler.java104 * @param version The XML version, or null if not specified.
111 public void textDecl(String version, String encoding, argument
H A DXMLDocumentHandler.java77 * @param version The XML version.
86 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) argument
197 * @param version The XML version, or null if not specified.
204 public void textDecl(String version, String encoding, Augmentations augs) throws XNIException; argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathNamespaceImpl.java311 public Object getFeature(String feature, String version) { argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DEntity.java288 //each 'external' parsed entity may have xml/text declaration containing version information
289 public String version ; field in class:Entity.ScannedEntity
319 /** XML version. **/
354 /**each 'external' parsed entity may have xml/text declaration containing version information
355 * @return String version of the enity, for an internal entity version would be null
358 return version ;
361 /** each 'external' parsed entity may have xml/text declaration containing version information
362 * @param String version of the external parsed entity
364 public void setEntityVersion(String version){ argument
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DXMLEventFactoryImpl.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
162 public javax.xml.stream.events.StartDocument createStartDocument(String encoding, String version) { argument
163 StartDocumentEvent event = new StartDocumentEvent(encoding, version);
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/xml/internal/stream/writers/
H A DXMLDOMWriterImpl.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
154 * Is not supported in this version of the implementation.
175 * Is not supported in this version of the implementation.
555 * will set version on the Document object when the DOM Node passed to this implementation
572 * will set version on the Document object when the DOM Node passed to this implementation
574 * @param version {@inheritDoc}
577 public void writeStartDocument(String version) throws XMLStreamException { argument
580 mXmlVersion.invoke(ownerDoc, new Object[] {version});
596 writeStartDocument(String encoding, String version) argument
[all...]
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLEventFactory.java5 * under the terms of the GNU General Public License version 2 only, as
13 * version 2 for more details (a copy is included in the LICENSE file that
16 * You should have received a copy of the GNU General Public License version
37 * @version 1.2
352 * @param version the XML version
357 String version,
364 * @param version the XML version
368 String version);
356 createStartDocument(String encoding, String version, boolean standalone) argument
367 createStartDocument(String encoding, String version) argument
[all...]
H A DXMLStreamWriter.java5 * under the terms of the GNU General Public License version 2 only, as
13 * version 2 for more details (a copy is included in the LICENSE file that
16 * You should have received a copy of the GNU General Public License version
188 * @version 1.0
417 * Write the XML Declaration. Defaults the XML version to 1.0, and the encoding to utf-8
424 * Write the XML Declaration. Defaults the XML version to 1.0
425 * @param version version of the xml document
428 public void writeStartDocument(String version) argument
437 * @param version versio
441 writeStartDocument(String encoding, String version) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DMessage.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
96 void setEncodingVersion(byte version); argument
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipOutputStream.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
69 private static int version(ZipEntry e) throws ZipException { method in class:ZipOutputStream
377 writeShort(version(e)); // version needed to extract
392 writeShort(version(e)); // version needed to extract
445 int version = version(
[all...]
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLet.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
90 * <CODE>[VERSION = </CODE><VAR>version</VAR><CODE>]</CODE><BR>
134 * <DT><CODE>VERSION = </CODE><VAR>version</VAR></DT>
136 * This optional attribute specifies the version number of the MBean and
137 * associated <CODE>.jar</CODE> files to be obtained. This version number can
140 * text file is loaded. <VAR>version</VAR> must be a series of non-negative
535 String version = elmt.getVersion();
549 .append("\n\tVERSION = ").append(version)
1228 check(String version, URL codebase, String jarfile, MLetContent mlet) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.hpp6 * under the terms of the GNU General Public License version 2 only, as
12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
108 int version() { return _header._version; } function in class:FileMapInfo
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DVirtualMachine.java6 * under the terms of the GNU General Public License version 2 only, as
14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
114 * is called 'equivalent' (to the old version of the
123 * frames continue to run the bytecodes of the previous version of the
124 * method. If the new version of such a method is non-equivalent,
204 * major and minor version numbers in bytes
805 * Typically, this string contains version information for the
809 * {@link #version}, {@link VirtualMachineManager#majorInterfaceVersion},
817 * Returns the version o
825 String version(); method in interface:VirtualMachine
[all...]

Completed in 134 milliseconds

1234567891011>>