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

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/predicate/
H A DFalsePredicate.java31 * to get an instance of this class.
38 private static final FalsePredicate<Object> instance = field in class:FalsePredicate
63 * Gets a type-safe, immutable, singleton instance of this class.
67 return (FalsePredicate<T>)instance;
H A DNonNullPredicate.java31 * method is the preferred way to get an instance of this class.
38 private static final NonNullPredicate<Object> instance = field in class:NonNullPredicate
63 * Gets a type-safe, immutable, singleton instance of this class.
67 return (NonNullPredicate<T>)instance;
H A DNullPredicate.java31 * preferred way to get an instance of this class.
38 private static final NullPredicate<Object> instance = field in class:NullPredicate
63 * Gets a type-safe, immutable, singleton instance of this class.
67 return (NullPredicate<T>)instance;
H A DTruePredicate.java31 * to get an instance of this class.
38 private static final TruePredicate<Object> instance = field in class:TruePredicate
63 * Gets a type-safe, immutable, singleton instance of this class.
67 return (TruePredicate<T>)instance;
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/propinfo/
H A DEnabledPropInfo.java37 * Available instance to mitigate object creation
39 public static final EnabledPropInfo instance = field in class:EnabledPropInfo
H A DSizePropInfo.java43 * Available instance to mitigate object creation
45 public static final SizePropInfo instance = field in class:SizePropInfo
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/smf/
H A DPropertyValuePropInfo.java42 * Available instance to mitigate object creation
44 public static final PropertyValuePropInfo instance = field in class:PropertyValuePropInfo
H A DServiceUtil.java50 String service, String instance) {
54 kvs.put("instance", instance == null ? "" : instance);
58 public static ADRName toADRName(String service, String instance) { argument
60 return (getServiceObjectName(service, instance));
81 String instance = kvs.get("instance");
84 return ("svc:/" + (instance.equals("") ?
85 service : service + ":" + instance));
49 getServiceObjectName( String service, String instance) argument
[all...]
H A DAggregatedRefreshService.java58 private Boolean instance = null; field in class:AggregatedRefreshService
225 if (instance != null)
226 return (instance);
227 return (instance = service.isInstance());
341 this.instance = null;
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/model/
H A DManagedObjectPropInfo.java46 * Available instance to mitigate object creation
48 public static final ManagedObjectPropInfo instance = field in class:ManagedObjectPropInfo
/solaris-userland-s11u3/components/visual-panels/smf/src/java/vpanels/app/svcs/com/oracle/solaris/vp/panels/svcs/client/swing/
H A DSTimePropInfo.java74 * Available instance to mitigate object creation
76 public static final STimePropInfo instance = new STimePropInfo(); field in class:STimePropInfo
H A DStatePropInfo.java69 * Available instance to mitigate object creation
71 public static final StatePropInfo instance = new StatePropInfo(); field in class:StatePropInfo
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/control/
H A DDebugObjectsTab.java58 * Available instance to mitigate object creation
60 public static final ClassPropInfo instance = new ClassPropInfo(); field in class:DebugObjectsTab.ClassPropInfo
95 ManagedObjectPropInfo.instance,
97 ClassPropInfo.instance,
/solaris-userland-s11u3/components/visual-panels/smf/src/java/vpanels/app/smf/com/oracle/solaris/vp/panels/smf/client/swing/
H A DInstanceTabbedControl.java42 public static final String ID = "instance";
43 public static final String PARAM_INSTANCE = "instance";
50 private InstanceManagedObject instance; field in class:InstanceTabbedControl
78 return instance;
158 private void setInstance(InstanceManagedObject instance) { argument
159 this.instance = instance;
160 setName(instance == null ? null : instance.getSMFFmri().getInstance());
/solaris-userland-s11u3/components/visual-panels/core/src/java/smf-old/com/oracle/solaris/scf/common/
H A DFMRI.java107 "Invalid instance: " + instance_));
156 "instance", "propertyGroup", "property"})
158 String service, String instance, String pg, String property)
184 instance_ = instance;
185 path = ":" + instance + path;
264 * Returns the instance component of a service FMRI, or {@code
322 "svcType", "scope", "name", "service", "instance", "propertyGroup",
157 FMRI(FMRIScheme scheme, FMRIType type, String scope, String name, String service, String instance, String pg, String property) argument
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/swing/
H A DApp.java450 // Start singleton application instance...
545 protected void instanceClosed(AppInstance instance) { argument
547 if (instances.remove(instance)) {
553 protected void instanceCreated(AppInstance instance) { argument
555 instances.add(instance);
560 AppInstance instance = null;
596 instance = new AppInstance(this, info.properties, request);
599 instance.getNavigator().goToAsyncAndWait(true, null, path);
622 if (!success && instance != null &&
624 !NavigationUtil.isPanelStarted(instance
[all...]

Completed in 61 milliseconds