Searched defs:instance (Results 1 - 25 of 197) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/sun/font/
H A DFontManagerFactory.java39 * Factory class used to retrieve a valid FontManager instance for the current
49 /** Our singleton instance. */
50 private static FontManager instance = null; field in class:FontManagerFactory
66 * @return a valid FontManager instance for the current platform
70 if (instance != null) {
71 return instance;
83 instance = (FontManager) fmClass.newInstance();
103 return instance;
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/UTIL/
H A DTestUtil.java30 private static TestUtil instance = null; field in class:TestUtil
33 instance = new TestUtil();
48 if (instance == null) {
60 return instance.isUnlimited;
66 if (instance == null) {
67 instance = new TestUtil();
69 if ((instance.isUnlimited) ||
/openjdk7/jdk/src/share/classes/sun/awt/
H A DDesktopBrowse.java33 public static void setInstance(DesktopBrowse instance) { argument
35 throw new IllegalStateException("DesktopBrowse instance has already been set.");
37 mInstance = instance;
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DBreakpointRequest.java70 * which the currently executing instance is the object
77 * @param instance the object which must be the current instance
86 void addInstanceFilter(ObjectReference instance); argument
H A DExceptionRequest.java138 * which the currently executing instance ("this") is the object
145 * @param instance the object which must be the current instance
154 void addInstanceFilter(ObjectReference instance); argument
H A DMethodEntryRequest.java99 * which the currently executing instance ("this") is the object
106 * @param instance the object which must be the current instance
115 void addInstanceFilter(ObjectReference instance); argument
H A DMethodExitRequest.java102 * which the currently executing instance ("this") is the object
109 * @param instance the object which must be the current instance
118 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorContendedEnterRequest.java100 * which the currently executing instance ("this") is the object
106 * @param instance the object which must be the current instance
115 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorContendedEnteredRequest.java100 * which the currently executing instance ("this") is the object
106 * @param instance the object which must be the current instance
115 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorWaitRequest.java99 * which the currently executing instance ("this") is the object
105 * @param instance the object which must be the current instance
114 void addInstanceFilter(ObjectReference instance); argument
H A DMonitorWaitedRequest.java99 * which the currently executing instance ("this") is the object
105 * @param instance the object which must be the current instance
114 void addInstanceFilter(ObjectReference instance); argument
H A DWatchpointRequest.java103 * which the currently executing instance ("this") is the object
110 * @param instance the object which must be the current instance
119 void addInstanceFilter(ObjectReference instance); argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftControl.java35 public double[] get(int instance, String name); argument
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaPanelUI.java38 static RecyclableSingleton<AquaPanelUI> instance = new RecyclableSingletonFromDefaultConstructor<AquaPanelUI>(AquaPanelUI.class); field in class:AquaPanelUI
41 return instance.get();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DDefaultResourceInjector.java41 public void inject(@NotNull WSWebServiceContext context, @NotNull Object instance) { argument
43 instance.getClass(),WebServiceContext.class,false).inject(instance,context);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DServiceName.java51 public ServiceName (String service, String instance, String realm) argument
54 super(service, instance, realm, PrincipalName.KRB_NT_SRV_INST);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSurfaceManagerFactory.java43 * The single shared instance.
45 private static SurfaceManagerFactory instance; field in class:SurfaceManagerFactory
48 * Returns the surface manager factory instance. This returns a factory
55 if (instance == null) {
58 return instance;
75 if (instance != null) {
76 // We don't want to re-set the instance at any time.
80 instance = factory;
84 * Creates a new instance of a VolatileSurfaceManager given any
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalEventTimer.java42 private static LocalEventTimer instance; // singleton instance field in class:LocalEventTimer
45 * Creates the singleton LocalEventTimer instance.
52 * Get the singleton LocalEventTimer instance
54 * @return LocalEventTimer - the singleton LocalEventTimer instance
57 if (instance == null) {
58 instance = new LocalEventTimer();
60 return instance;
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DExtendedCharsets.java44 static volatile ExtendedCharsets instance = null; field in class:ExtendedCharsets
1108 instance = this;
1295 if (instance == null)
1297 return instance.aliases(charsetName);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DProcessMonitorThread.java42 private static ProcessMonitorThread instance = null; field in class:ProcessMonitorThread
96 instance = new ProcessMonitorThread( serverTable,
98 instance.setDaemon( true );
99 instance.start();
103 instance.interrupt();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaClass.java32 public JSJavaClass(Instance instance, JSJavaKlass jk, JSJavaFactory fac) { argument
33 super(instance, fac);
H A DJSJavaString.java30 * Wraps a java.lang.String instance of the target VM.
33 public JSJavaString(Instance instance, JSJavaFactory fac) { argument
34 super(instance, fac);
/openjdk7/jdk/src/share/classes/java/beans/
H A DExpression.java125 * If the value property of this instance is not already set,
172 /*pp*/ String instanceName(Object instance) { argument
173 return instance == unbound ? "<unbound>" : super.instanceName(instance);
H A DNameGenerator.java36 * and an instance number.
38 * For example, if the first object instance javax.swing.JButton
85 * Returns a unique string which identifies the object instance.
89 * @param instance object used to generate string
92 public String instanceName(Object instance) { argument
93 if (instance == null) {
96 if (instance instanceof Class) {
97 return unqualifiedClassName((Class)instance);
100 String result = (String)valueToName.get(instance);
104 Class type = instance
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDescriptorCache.java39 return instance;
44 return instance;
62 private final static DescriptorCache instance = new DescriptorCache(); field in class:DescriptorCache

Completed in 48 milliseconds

12345678