Searched defs:newInstance (Results 26 - 50 of 92) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DFactoryFinder.java46 private static Object newInstance(String className, method in class:FactoryFinder
51 return spiClass.newInstance();
110 return newInstance(factoryClassName, classLoader);
127 return newInstance(factoryClassName, classLoader);
138 return newInstance(systemProp, classLoader);
148 return newInstance(fallbackClassName, classLoader);
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DXMLEventAllocatorImpl.java64 public javax.xml.stream.util.XMLEventAllocator newInstance() { method in class:XMLEventAllocatorImpl
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLOutputFactory.java126 public static XMLOutputFactory newInstance() method in class:XMLOutputFactory
152 * Note that this is a new method that replaces the deprecated newInstance() method.
179 public static XMLInputFactory newInstance(String factoryId, method in class:XMLOutputFactory
196 * newInstance(String factoryId, ClassLoader classLoader) method.
H A DFactoryFinder.java145 static Object newInstance(String className, ClassLoader cl, boolean doFallback) method in class:FactoryFinder
148 return newInstance(className, cl, doFallback, false);
167 static Object newInstance(String className, ClassLoader cl, boolean doFallback, boolean useBSClsLoader) method in class:FactoryFinder
180 Object instance = providerClass.newInstance();
242 return newInstance(systemProp, null, true);
281 return newInstance(factoryClassName, null, true);
299 return newInstance(fallbackClassName, cl, true);
367 return newInstance(factoryClassName, cl, false, useBSClsLoader);
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DInitialLdapContext.java186 public LdapContext newInstance(Control[] reqCtls) method in class:InitialLdapContext
188 return getDefaultLdapInitCtx().newInstance(reqCtls);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DXmlAttributeQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlAttributeQuick
H A DXmlElementDeclQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlElementDeclQuick
H A DXmlElementQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlElementQuick
H A DXmlElementRefQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlElementRefQuick
H A DXmlSchemaQuick.java49 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlSchemaQuick
H A DXmlSchemaTypeQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlSchemaTypeQuick
H A DXmlTypeQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlTypeQuick
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXEventAllocatorBase.java64 factory = XMLEventFactory.newInstance();
73 public XMLEventAllocator newInstance() { method in class:StAXEventAllocatorBase
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DJAXBContext.java44 * one of these two styles for newInstance methods, although there are other
48 * <li>{@link #newInstance(String,ClassLoader) JAXBContext.newInstance( "com.acme.foo:com.acme.bar" )} <br/>
55 * <li>{@link #newInstance(Class...) JAXBContext.newInstance( com.acme.foo.Foo.class )} <br/>
58 * these class(es). See {@link #newInstance(Class...)} for details.
112 * JAXBContext jc = JAXBContext.newInstance( "com.acme.foo:com.acme.bar" );
152 * <tt>newInstance( javaContentInterface )</tt> method</i>
173 * JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" );
213 * When one of the <tt>newInstance</t
294 public static JAXBContext newInstance( String contextPath ) method in class:JAXBContext
392 public static JAXBContext newInstance( String contextPath, ClassLoader classLoader ) throws JAXBException { method in class:JAXBContext
428 public static JAXBContext newInstance( String contextPath, ClassLoader classLoader, Map<String,?> properties ) method in class:JAXBContext
581 public static JAXBContext newInstance( Class... classesToBeBound ) method in class:JAXBContext
627 public static JAXBContext newInstance( Class[] classesToBeBound, Map<String,?> properties ) method in class:JAXBContext
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPFactory.java260 public static SOAPFactory newInstance() method in class:SOAPFactory
267 return newInstance(SOAPConstants.SOAP_1_1_PROTOCOL);
294 public static SOAPFactory newInstance(String protocol) method in class:SOAPFactory
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest8013416.java65 protected void initialize(Class<?> type, Object oldInstance, Object newInstance, Encoder out) { argument
66 super.initialize(type, oldInstance, newInstance, out);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DXSLTCDTMManager.java85 public static XSLTCDTMManager newInstance() method in class:XSLTCDTMManager
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DObjectFactory.java141 return newInstance(systemProp, cl, true);
157 return newInstance(fallbackClassName, cl, true);
249 public static Object newInstance(String className, boolean doFallback) method in class:ObjectFactory
253 return newInstance(className, null, doFallback);
255 return newInstance(className,
263 public static Object newInstance(String className, ClassLoader cl, method in class:ObjectFactory
270 Object instance = providerClass.newInstance();
429 return newInstance(factoryClassName, cl, false);
/openjdk7/jaxp/src/javax/xml/datatype/
H A DFactoryFinder.java147 static Object newInstance(String className, ClassLoader cl, boolean doFallback) method in class:FactoryFinder
150 return newInstance(className, cl, doFallback, false);
169 static Object newInstance(String className, ClassLoader cl, boolean doFallback, boolean useBSClsLoader) method in class:FactoryFinder
182 Object instance = providerClass.newInstance();
222 return newInstance(systemProp, null, true);
250 return newInstance(factoryClassName, null, true);
268 return newInstance(fallbackClassName, null, true);
336 return newInstance(factoryClassName, cl, false, useBSClsLoader);
/openjdk7/jaxp/src/javax/xml/parsers/
H A DFactoryFinder.java144 static Object newInstance(String className, ClassLoader cl, boolean doFallback) method in class:FactoryFinder
147 return newInstance(className, cl, doFallback, false);
166 static Object newInstance(String className, ClassLoader cl, boolean doFallback, boolean useBSClsLoader) method in class:FactoryFinder
179 Object instance = providerClass.newInstance();
219 return newInstance(systemProp, null, true);
247 return newInstance(factoryClassName, null, true);
265 return newInstance(fallbackClassName, null, true);
333 return newInstance(factoryClassName, cl, false, useBSClsLoader);
H A DSAXParserFactory.java59 * <p>Protected constructor to force use of {@link #newInstance()}.</p>
124 public static SAXParserFactory newInstance() { method in class:SAXParserFactory
167 * @see #newInstance()
171 public static SAXParserFactory newInstance(String factoryClassName, ClassLoader classLoader){ method in class:SAXParserFactory
174 return (SAXParserFactory) FactoryFinder.newInstance(factoryClassName, classLoader, false);
/openjdk7/jaxp/src/javax/xml/transform/
H A DFactoryFinder.java146 static Object newInstance(String className, ClassLoader cl, boolean doFallback) method in class:FactoryFinder
149 return newInstance(className, cl, doFallback, false, false);
170 static Object newInstance(String className, ClassLoader cl, boolean doFallback, boolean useBSClsLoader, boolean useServicesMechanism) method in class:FactoryFinder
188 instance = providerClass.newInstance();
250 return newInstance(systemProp, null, true, false, true);
278 return newInstance(factoryClassName, null, true, false, true);
296 return newInstance(fallbackClassName, null, true, false, true);
364 return newInstance(factoryClassName, cl, false, useBSClsLoader, true);
H A DTransformerFactory.java98 public static TransformerFactory newInstance() method in class:TransformerFactory
144 * @see #newInstance()
148 public static TransformerFactory newInstance(String factoryClassName, ClassLoader classLoader) method in class:TransformerFactory
152 return (TransformerFactory) FactoryFinder.newInstance(factoryClassName, classLoader, false);
/openjdk7/jaxp/src/javax/xml/validation/
H A DSchemaFactory.java190 * @see #newInstance(String schemaLanguage, String factoryClassName, ClassLoader classLoader)
192 public static final SchemaFactory newInstance(String schemaLanguage) { method in class:SchemaFactory
250 * @see #newInstance(String schemaLanguage)
254 public static SchemaFactory newInstance(String schemaLanguage, String factoryClassName, ClassLoader classLoader){ method in class:SchemaFactory
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathFactory.java32 *<p>See {@link #newInstance(String uri)} for lookup mechanism.</p>
41 * <code>newInstance</code> methods is being invoked, applications
42 * may not attempt to recursively invoke a <code>newInstance</code> method,
69 * <p>Protected constructor as {@link #newInstance()} or {@link #newInstance(String uri)}
70 * or {@link #newInstance(String uri, String factoryClassName, ClassLoader classLoader)}
83 * newInstance(DEFAULT_OBJECT_MODEL_URI)
93 public static final XPathFactory newInstance() { method in class:XPathFactory
96 return newInstance(DEFAULT_OBJECT_MODEL_URI);
99 "XPathFactory#newInstance() faile
160 public static final XPathFactory newInstance(final String uri) method in class:XPathFactory
240 public static XPathFactory newInstance(String uri, String factoryClassName, ClassLoader classLoader) method in class:XPathFactory
[all...]

Completed in 111 milliseconds

1234