Searched refs:create (Results 126 - 150 of 1988) sorted by relevance

1234567891011>>

/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DSDDocumentSource.java47 * {@link #create} methods can be used.
60 * create a new parser (or it can just ignore this parameter completely.)
93 public static SDDocumentSource create(final Class<?> implClass, final String wsdlLocation) { method in class:SDDocumentSource
97 return create(url);
99 return create(wsdlLocation, implClass);
108 public static SDDocumentSource create(final URL url) { method in class:SDDocumentSource
123 XMLStreamReaderFactory.create(systemId.toExternalForm(),is,false), is);
140 private static SDDocumentSource create(final String path, final Class<?> resolvingClass) { method in class:SDDocumentSource
152 return new TidyXMLStreamReader(XMLStreamReaderFactory.create(path,is,false), is);
182 public static SDDocumentSource create(fina method in class:SDDocumentSource
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/ref/
H A DCleaner.java171 * create or start the thread.
173 public static Cleaner create() { method in class:Cleaner
198 * create or start the thread.
200 public static Cleaner create(ThreadFactory threadFactory) { method in class:Cleaner
/openjdk10/jdk/test/com/sun/net/httpserver/
H A DSimpleHttpServerTest.java43 HttpServer server = HttpServer.create(serverAddr, 0);
52 server = HttpServer.create(serverAddr, 0);
/openjdk10/jdk/test/java/beans/EventHandler/
H A DTest6788531.java38 button.addActionListener(EventHandler.create(ActionListener.class, new Private(), "run"));
39 button.addActionListener(EventHandler.create(ActionListener.class, new PrivateGeneric(), "run", "actionCommand"));
H A DTest6179222.java42 test(EventHandler.create(ActionListener.class, test, "foo", "source.icon"));
44 test(EventHandler.create(ActionListener.class, test, "bar.doit"));
/openjdk10/jdk/test/java/beans/XMLEncoder/
H A DTest5023552.java43 return component.create(component);
51 return new Expression(container, component, "create", new Object[] {component});
57 public Container create(Component component) { method in class:Test5023552.Component
/openjdk10/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DBooleanArrayCalls.java55 public Remote create() throws RemoteException { method in class:BooleanArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DShortArrayCalls.java55 public Remote create() throws RemoteException { method in class:ShortArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DShortCalls.java54 public Remote create() throws RemoteException { method in class:ShortCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
H A DNullCalls.java53 public Remote create() throws RemoteException { method in class:NullCalls.ServerFactory
65 Server stub = (Server) bsrv.create(new ServerFactory());
H A DFloatArrayCalls.java55 public Remote create() throws RemoteException { method in class:FloatArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DLongArrayCalls.java55 public Remote create() throws RemoteException { method in class:LongArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DIntArrayCalls.java55 public Remote create() throws RemoteException { method in class:IntArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DFloatCalls.java54 public Remote create() throws RemoteException { method in class:FloatCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
H A DLongCalls.java54 public Remote create() throws RemoteException { method in class:LongCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
H A DIntCalls.java54 public Remote create() throws RemoteException { method in class:IntCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
H A DExceptionCalls.java57 public Remote create() throws RemoteException { method in class:ExceptionCalls.ServerFactory
69 Server stub = (Server) bsrv.create(new ServerFactory());
H A DDoubleArrayCalls.java55 public Remote create() throws RemoteException { method in class:DoubleArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DByteArrayCalls.java55 public Remote create() throws RemoteException { method in class:ByteArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DCharArrayCalls.java55 public Remote create() throws RemoteException { method in class:CharArrayCalls.ServerFactory
68 Server stub = (Server) bsrv.create(new ServerFactory());
H A DDoubleCalls.java54 public Remote create() throws RemoteException { method in class:DoubleCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
H A DBooleanCalls.java54 public Remote create() throws RemoteException { method in class:BooleanCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
H A DByteCalls.java54 public Remote create() throws RemoteException { method in class:ByteCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
H A DCharCalls.java54 public Remote create() throws RemoteException { method in class:CharCalls.ServerFactory
66 Server stub = (Server) bsrv.create(new ServerFactory());
/openjdk10/jdk/test/java/net/httpclient/examples/
H A DWebSocketExample.java46 URI.create("ws://websocket.example.com"),
56 URI.create("ws://websocket.example.com"),

Completed in 106 milliseconds

1234567891011>>