Searched defs:object (Results 76 - 100 of 276) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialRef.java33 * A serialized mapping of a <code>Ref</code> object, which is the mapping in the
38 * object and provides methods for getting and setting the <code>Ref</code> object.
51 private Object object; field in class:SerialRef
59 * Constructs a <code>SerialRef</code> object from the given <code>Ref</code>
60 * object.
62 * @param ref a Ref object; cannot be <code>null</code>
64 * is <code>null</code>; or if the <code>Ref</code> object returns a
67 * object
71 throw new SQLException("Cannot instantiate a SerialRef object "
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DMutableTreeNode.java29 * Defines the requirements for a tree node object that can change --
31 * of a user object stored in the node.
60 * Resets the user object of the receiver to <code>object</code>.
62 void setUserObject(Object object); argument
/openjdk7/jdk/src/share/classes/java/security/
H A DPermission.java35 * that are permitted for the object. For example,
36 * for a <code>java.io.FilePermission</code> object, the permission name is
74 * @param name name of the Permission object being created.
85 * passing this permission object as the permission to check.
89 * @param object the object being guarded (currently ignored).
100 public void checkGuard(Object object) throws SecurityException { argument
107 * this object's actions.
110 * only ones that can impose semantics on a Permission object.
118 * @return true if the specified permission is implied by this object,
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttribute.java56 * Constructs an Attribute object which associates the given attribute name with the given value.
59 * @param value The Object which is assigned to the attribute. This object must be of the same type as the attribute.
94 * @param object The Attribute that the current Attribute is to be compared with.
100 public boolean equals(Object object) { argument
101 if (!(object instanceof Attribute)) {
104 Attribute val = (Attribute) object;
128 * Returns a String object representing this Attribute's value. The format of this
H A DObjectInstance.java36 * Used to represent the object name of an MBean and its class name.
59 * Allows an object instance to be created given a string representation of
60 * an object name and the full class name, including the package name.
62 * @param objectName A string representation of the object name.
64 * name, of the object instance. If the MBean is a Dynamic MBean
79 * Allows an object instance to be created given an object name and
82 * @param objectName The object name.
84 * name, of the object instance. If the MBean is a Dynamic MBean
105 * Compares the current object instanc
112 equals(Object object) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DStringMonitorMBean.java64 * @param object the MBean for which the derived gauge is to be returned
69 public String getDerivedGauge(ObjectName object); argument
74 * @param object the MBean for which the derived gauge timestamp is to be returned
79 public long getDerivedGaugeTimeStamp(ObjectName object); argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DNamedObject.java33 * This class is used for storing a pair (name, object) where name is
34 * an object name and object is a reference to the object.
49 private final DynamicMBean object; field in class:NamedObject
53 * Allows a named object to be created.
55 *@param objectName The object name of the object.
56 *@param object A reference to the object
58 NamedObject(ObjectName objectName, DynamicMBean object) argument
74 NamedObject(String objectName, DynamicMBean object) argument
91 equals(Object object) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DLdapPrincipal.java83 * Compares this principal to the specified object.
85 * @param object The object to compare this principal against.
88 public boolean equals(Object object) { argument
89 if (this == object) {
92 if (object instanceof LdapPrincipal) {
96 name.equals(getLdapName(((LdapPrincipal)object).getName()));
134 // Create an LdapName object from a string distinguished name.
H A DUserPrincipal.java71 * Compares this principal to the specified object.
73 * @param object The object to compare this principal against.
76 public boolean equals(Object object) { argument
77 if (this == object) {
80 if (object instanceof UserPrincipal) {
81 return name.equals(((UserPrincipal)object).getName());
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DNSPrintInfo.java44 public boolean equals(Object object) { argument
45 return (object != null && object instanceof NSPrintInfo && fNSPrintInfo == ((NSPrintInfo)object).fNSPrintInfo);
/openjdk7/jdk/src/share/classes/com/sun/beans/
H A DWildcardTypeImpl.java95 * Indicates whether some other object is "equal to" this one.
99 * @param object the reference object with which to compare
100 * @return {@code true} if this object is the same as the object argument;
105 public boolean equals(Object object) { argument
106 if (object instanceof WildcardType) {
107 WildcardType type = (WildcardType) object;
115 * Returns a hash code value for the object.
119 * @return a hash code value for this object
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.hpp208 llvm::Value* CreateInlineOop(jobject object, const char* name = "");
209 llvm::Value* CreateInlineOop(ciObject* object, const char* name = "") { argument
210 return CreateInlineOop(object->constant_encoding(), name);
H A DsharkConstant.cpp109 ciObject *object = constant.as_object(); local
111 if (object->is_klass()) {
114 ciKlass *klass = object->as_klass();
119 object = klass->java_mirror();
121 if (object->is_null_object() || !object->can_be_constant()) {
127 _object = object;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJFieldRef.java38 private JGenerable object; field in class:JFieldRef
56 * Field reference constructor given an object expression and field name
58 * @param object
59 * JExpression for the object upon which
65 JFieldRef(JExpression object, String name) { argument
66 this(object, name, false);
69 JFieldRef(JExpression object, JVar v) { argument
70 this(object, v, false);
84 JFieldRef(JGenerable object, String name, boolean explicitThis) { argument
86 this.object
92 JFieldRef(JGenerable object, JVar var, boolean explicitThis) argument
[all...]
/openjdk7/jdk/test/java/beans/Introspector/memory/
H A DTest4508780.java116 private static PropertyDescriptor[] getPropertyDescriptors(Object object) { argument
117 Class type = object.getClass();
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestEquals.java73 public boolean equals(Object object) { argument
74 if (object instanceof TestEquals) {
76 TestEquals that = (TestEquals)object;
H A DTestListeners.java107 public boolean equals(Object object) { argument
108 if (object instanceof TestListeners) {
109 TestListeners test = (TestListeners)object;
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestEquals.java72 public boolean equals(Object object) { argument
73 if (object instanceof TestEquals) {
75 TestEquals that = (TestEquals)object;
H A DTestListeners.java108 public boolean equals(Object object) { argument
109 if (object instanceof TestListeners) {
110 TestListeners test = (TestListeners)object;
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DTestClass.java55 private static void validate(String name, Object object) { argument
56 Class type = (Class) object;
/openjdk7/jdk/test/java/beans/XMLEncoder/6329581/
H A DTest6329581.java77 private void validate(Object object) { argument
78 if (!object.getClass().getClassLoader().equals(this)) {
84 Object object = loadClass(name).newInstance();
85 validate(object);
89 encoder.writeObject(object);
97 Object object = decoder.readObject();
98 validate(object);
100 return object;
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6989223.java56 public boolean equals(Object object) { argument
57 return super.equals(object); // to avoid recursion during validation
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_tag.c79 tag_new_object(jobject object, ObjectKind kind, SerialNumber thread_serial_num, argument
86 /* New object for this site. */
90 setTag(object, tag);
110 /* If we don't know the size of a java.lang.Class object, get it */
117 /* Tag this java.lang.Class object if it hasn't been already */
120 /* New object for this site. */
131 /* Record this object index in the Class table */
/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A DMonitor.cpp54 Monitor::Monitor(jvmtiEnv *jvmti, JNIEnv *env, jobject object) argument
65 /* Get the class name for this monitor object */
67 klass = env->GetObjectClass(object);
H A DThread.cpp84 jthread thread, jobject object)
90 jthread thread, jobject object, jlong timeout)
96 jthread thread, jobject object, jboolean timed_out)
83 monitor_contended_enter(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object) argument
89 monitor_wait(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object, jlong timeout) argument
95 monitor_waited(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object, jboolean timed_out) argument

Completed in 78 milliseconds

1234567891011>>