Searched defs:object (Results 1 - 11 of 11) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/smf/
H A DSmfDependenciesPanel.java74 public void init(SmfManagedObject object) { argument
79 if (object == null) {
82 deps = object.getDependencies();
H A DSmfPropertiesPanel.java73 public void init(SmfManagedObject object) { argument
79 object == null ? empty : object.getPropertyGroups());
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/timezone/
H A DLocationCriteria.java51 * Obtains the criterion that matches the specified object.
53 public abstract U toCriterion(T object); argument
H A DLocationMapper.java32 public Point2D map(T object); argument
33 public String getLabel(T object); argument
H A DLocationPicker.java66 LocationLabel(T object) argument
68 object_ = object;
69 label_ = mapper_.getLabel(object);
70 center_ = mapper_.map(object);
322 public void setSelection(T object) argument
324 LocationLabel ll = objects_.get(object);
325 if (ll == null && object != null)
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/
H A DManagedObjectTreeNode.java45 public ManagedObjectTreeNode(ManagedObject<?> object) { argument
46 super(object);
49 object.addIntervalListener(this);
50 object.addPropertyChangeListener(this);
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/property/
H A DPropertySynchronizer.java34 * #getObject object}, so that changes in one will automatically be reflected in
36 * {@link #objectChanged} whenever that object changes.
44 private O object; field in class:PropertySynchronizer
65 * the property to synchronize with the secondary object
67 * @param object
68 * the secondary object to synchronize with the property
72 * the property to the secondary object; if {@code false},
75 public PropertySynchronizer(MutableProperty<T> property, O object, argument
79 this.object = object;
89 PropertySynchronizer(MutableProperty<T> property, O object) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DDblTreeNode.java58 public DblTreeNode(Object object) { argument
59 super(object);
93 * use <code>this</code> object (default).
120 public int compareTo(Object object) { argument
123 if (object instanceof DblTreeNode) {
124 DblTreeNode other = (DblTreeNode) object;
127 return string.compareTo(object.toString());
H A DDoubleTreesLayout.java60 * <code>DoubleTreesConstraints</code> object.
140 public void addLayoutComponent(Component component, Object object) { argument
141 if (object == null) {
144 object = defaultConstraints;
152 if (!(object instanceof DoubleTreesConstraints)) {
159 * object.
162 (DoubleTreesConstraints) ((DoubleTreesConstraints) object).clone();
/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/
H A De_pk11_uri.h67 #define PK11_OBJECT "object"
85 char *object; /* object label, the only mandatory info */ member in struct:pkcs11_uri_struct
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DDebugUtil.java46 * Dumps some text representation of the given object to the given
49 * @param object
50 * the object to dump
63 * handled the given object, {@code false} otherwise
65 boolean dump(String title, Object object, int indent, PrintWriter out); argument
75 public boolean dump(String title, Object object, int indent,
78 out.printf("%s%s%s\n", indent(indent), title, object);
86 public boolean dump(String title, Object object, int indent,
89 if (object instanceof Collection) {
90 Collection collection = (Collection)object;
202 dump(Object object) argument
206 dump(String title, Object object) argument
210 dump(String title, Object object, int indent) argument
214 dump(String title, Object object, int indent, PrintWriter out) argument
[all...]

Completed in 72 milliseconds