Searched refs:create (Results 1 - 25 of 809) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/reflect/
H A DByteVectorFactory.java29 static ByteVector create() { method in class:ByteVectorFactory
33 static ByteVector create(int sz) { method in class:ByteVectorFactory
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/util/
H A DLazyBlockReference.java44 protected abstract JBlock create(); method in class:LazyBlockReference
46 public JBlock get(boolean create) { argument
47 if(!create) return block;
49 block = create();
H A DBlockReference.java34 * This interface is usually used when one wants to create
42 * @param create
46 JBlock get(boolean create); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DAnnotationParserFactory.java34 AnnotationParser create(); method in interface:AnnotationParserFactory
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBorders/
H A DTest6657026.java51 test(create("ButtonBorder"));
52 test(create("MenuBarBorder"));
53 test(create("MenuItemBorder"));
54 test(create("PopupMenuBorder"));
56 test(create("Flush3DBorder"));
57 test(create("InternalFrameBorder"));
58 // NOT USED: test(create("FrameBorder"));
59 // NOT USED: test(create("DialogBorder"));
60 test(create("PaletteBorder"));
61 test(create("OptionDialogBorde
65 private static Border create(String name) { method in class:Test6657026
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DViewFactory.java30 * A factory to create a view of some portion of document subject.
46 public View create(Element elem); method in interface:ViewFactory
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DDefaultAsynchronousChannelProvider.java40 public static AsynchronousChannelProvider create() { method in class:DefaultAsynchronousChannelProvider
H A DDefaultSelectorProvider.java45 public static SelectorProvider create() { method in class:DefaultSelectorProvider
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DDefaultFileSystemProvider.java35 public static FileSystemProvider create() { method in class:DefaultFileSystemProvider
H A DDefaultFileTypeDetector.java33 public static FileTypeDetector create() { method in class:DefaultFileTypeDetector
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyPrintGraphics.java62 public Graphics create() { method in class:ProxyPrintGraphics
63 return new ProxyPrintGraphics(getGraphics().create(), printJob);
83 public Graphics create(int x, int y, int width, int height) { method in class:ProxyPrintGraphics
84 Graphics g = getGraphics().create(x, y, width, height);
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpsServer.java62 public static HttpsServer create () throws IOException { method in class:HttpsServer
63 return create (null, 0);
85 public static HttpsServer create ( method in class:HttpsServer
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPElementFactory.java69 public SOAPElement create(Name name) throws SOAPException { method in class:SOAPElementFactory
91 public SOAPElement create(String localName) throws SOAPException { method in class:SOAPElementFactory
116 public SOAPElement create(String localName, String prefix, String uri) method in class:SOAPElementFactory
134 "Unable to create SOAP Element Factory: " + ex.getMessage());
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DIdentifiableFactoryFinder.java31 * Factories can be registered, and invoked through a create method, which
39 * read an Identifiable from is. Otherwise create an
44 Identifiable create(int id, InputStream is); method in interface:IdentifiableFactoryFinder
H A DTaggedComponentFactoryFinder.java33 TaggedComponent create( org.omg.CORBA.ORB orb, method in interface:TaggedComponentFactoryFinder
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DStateEngineFactory.java38 public static StateEngine create() method in class:StateEngineFactory
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/protocol/
H A DLocalClientRequestDispatcherFactory.java31 public LocalClientRequestDispatcher create( int id, IOR ior ) ; method in interface:LocalClientRequestDispatcherFactory
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DReadTimeoutsFactory.java31 // create transport read timeouts
32 public ReadTimeouts create(int initial_wait_time, method in interface:ReadTimeoutsFactory
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DRenderedImageFactory.java56 * <p> The create() method can return null if the
67 * were used to create the image. In addition any RenderedImages
76 RenderedImage create(ParameterBlock paramBlock, method in interface:RenderedImageFactory
/openjdk7/jdk/src/macosx/classes/sun/nio/ch/
H A DDefaultSelectorProvider.java44 public static SelectorProvider create() { method in class:DefaultSelectorProvider
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/
H A DToolVersion.java37 public static final Version VERSION = Version.create(ToolVersion.class.getResourceAsStream("version.properties"));
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6424196.java37 HttpServer server = HttpServer.create();
/openjdk7/jdk/test/sun/misc/Cleaner/
H A DExitOnThrow.java32 Cleaner.create(new Object(),
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWMenuBarPeer.java46 create(framePeer);
50 native void create(WFramePeer f); method in class:WMenuBarPeer
/openjdk7/jdk/test/java/io/pathNames/
H A DGeneral.java81 * Construct a string that names a file in the given directory. If create
82 * is true, then create a file if none is found, and throw an exception if
85 private static String findSomeFile(String dir, boolean create) { argument
101 if (create) {
108 throw new RuntimeException("Can't create a file in " + dir);
118 * If create is true, then create a subdirectory if none is found, and
122 private static String findSomeDir(String dir, boolean create) { argument
139 if (create) {
266 * boolean create Control
274 checkSlash(int depth, boolean create, String ans, String ask, String slash) argument
286 checkSlashes(int depth, boolean create, String ans, String ask) argument
307 checkNames(int depth, boolean create, String ans, String ask) argument
[all...]

Completed in 300 milliseconds

1234567891011>>