Searched defs:newInstance (Results 1 - 25 of 92) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/reflect/
H A DConstructorAccessor.java37 public Object newInstance(Object[] args) method in interface:ConstructorAccessor
H A DConstructorAccessorImpl.java37 public abstract Object newInstance(Object[] args) method in class:ConstructorAccessorImpl
H A DBootstrapConstructorAccessorImpl.java41 public Object newInstance(Object[] args) method in class:BootstrapConstructorAccessorImpl
H A DDelegatingConstructorAccessorImpl.java40 public Object newInstance(Object[] args) method in class:DelegatingConstructorAccessorImpl
45 return delegate.newInstance(args);
H A DInstantiationExceptionConstructorAccessorImpl.java32 newInstance() call */
42 public Object newInstance(Object[] args) method in class:InstantiationExceptionConstructorAccessorImpl
H A DNativeConstructorAccessorImpl.java42 public Object newInstance(Object[] args) method in class:NativeConstructorAccessorImpl
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationInstantiator.java35 * <code>ActivationGroup</code> implements the <code>newInstance</code>
45 * The activator calls an instantiator's <code>newInstance</code>
73 public MarshalledObject<? extends Remote> newInstance(ActivationID id, method in interface:ActivationInstantiator
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/activeGroup/
H A DIdempotentActiveGroup.java121 public MarshalledObject newInstance(ActivationID id, method in class:IdempotentActiveGroup.FakeInstantiator
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DXMLEventAllocator.java54 public XMLEventAllocator newInstance(); method in interface:XMLEventAllocator
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DArrayType.java54 ArrayReference newInstance(int length); method in interface:ArrayType
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DNewInstance.java66 static Object newInstance (ClassLoader classLoader, String className) method in class:NewInstance
84 return driverClass.newInstance();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPConnectionFactory.java30 * is optional. If <code>SOAPConnectionFactory.newInstance()</code> throws an
60 * @exception UnsupportedOperationException if newInstance is not
63 public static SOAPConnectionFactory newInstance() method in class:SOAPConnectionFactory
H A DFactoryFinder.java41 private static Object newInstance(String className, method in class:FactoryFinder
47 return spiClass.newInstance();
138 return newInstance(systemProp, classLoader);
153 return newInstance(factoryClassName, classLoader);
177 return newInstance(factoryClassName, classLoader);
193 return newInstance(defaultClassName, classLoader);
H A DMessageFactory.java36 * using the method <code>newInstance</code>, as shown in the following
39 * MessageFactory mf = MessageFactory.newInstance();
40 * MessageFactory mf12 = MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL);
99 public static MessageFactory newInstance() method in class:MessageFactory
111 return newInstance(SOAPConstants.SOAP_1_1_PROTOCOL);
144 public static MessageFactory newInstance(String protocol) throws SOAPException { method in class:MessageFactory
H A DSOAPElementFactory.java129 public static SOAPElementFactory newInstance() throws SOAPException { method in class:SOAPElementFactory
131 return new SOAPElementFactory(SOAPFactory.newInstance());
/openjdk7/jdk/src/share/doc/stub/java/rmi/activation/
H A DActivationGroup_Stub.java50 * Stub method for <code>ActivationGroup.newInstance</code>. Invokes
72 public java.rmi.MarshalledObject newInstance( method in class:ActivationGroup_Stub
/openjdk7/jdk/src/share/classes/java/beans/
H A DPersistenceDelegate.java112 Object newInstance = out.get(oldInstance);
113 if (!mutatesTo(oldInstance, newInstance)) {
118 initialize(oldInstance.getClass(), oldInstance, newInstance, out);
124 * created by applying a series of statements to <code>newInstance</code>.
137 * @param newInstance The instance that is to be modified.
138 * @return True if an equivalent copy of <code>newInstance</code> may be
141 protected boolean mutatesTo(Object oldInstance, Object newInstance) { argument
142 return (newInstance != null && oldInstance != null &&
143 oldInstance.getClass() == newInstance.getClass());
169 * Produce a series of statements with side effects on <code>newInstance</cod
206 initialize(Class<?> type, Object oldInstance, Object newInstance, Encoder out) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapContext.java82 * <li>ldapContext.newInstance(<strong>reqCtls</strong>)
89 * <tt>newInstance()</tt> creates a new instance of a context using
219 public LdapContext newInstance(Control[] requestControls) method in interface:LdapContext
248 * @see #newInstance
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/spi/
H A DWSToolsObjectFactory.java47 public static WSToolsObjectFactory newInstance() { method in class:WSToolsObjectFactory
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DQuick.java57 protected abstract Quick newInstance( Locatable upstream, Annotation core ); method in class:Quick
H A DXmlElementRefsQuick.java48 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlElementRefsQuick
H A DXmlEnumQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlEnumQuick
H A DXmlRootElementQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlRootElementQuick
H A DXmlTransientQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlTransientQuick
H A DXmlValueQuick.java47 protected Quick newInstance(Locatable upstream, Annotation core) { method in class:XmlValueQuick

Completed in 564 milliseconds

1234