Searched defs:obj (Results 151 - 175 of 1229) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialJavaObject.java55 private final Object obj; field in class:SerialJavaObject
67 * @param obj the Java <code>Object</code> to be serialized
70 public SerialJavaObject(Object obj) throws SerialException { argument
77 Class<?> c = obj.getClass();
80 if (!(obj instanceof java.io.Serializable)) {
104 this.obj = obj;
116 return this.obj;
131 Class<?> c = this.obj.getClass();
H A DSerialRef.java151 * @param obj an <code>Object</code> representing the SQL structured type
156 public void setObject(Object obj) throws SerialException { argument
158 reference.setObject(obj);
162 object = obj;
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DChannelBinding.java165 * @param obj another ChannelBinding to compare this one with
170 public boolean equals(Object obj) { argument
172 if (this == obj)
175 if (! (obj instanceof ChannelBinding))
178 ChannelBinding cb = (ChannelBinding) obj;
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyName.java83 public boolean equals(Object obj) { argument
84 if (this == obj) {
87 if (!(obj instanceof KeyName)) {
90 KeyName okn = (KeyName) obj;
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutput.java45 * @param obj the object to be written
48 public void writeObject(Object obj) argument
/openjdk7/jdk/src/share/classes/java/lang/
H A DObject.java143 * @param obj the reference object with which to compare.
144 * @return {@code true} if this object is the same as the obj
149 public boolean equals(Object obj) { argument
150 return (this == obj);
342 * synchronized (obj) {
344 * obj.wait(timeout);
422 * synchronized (obj) {
424 * obj.wait(timeout, nanos);
481 * synchronized (obj) {
483 * obj
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DInterfaceAddress.java96 * @param obj the object to compare against.
101 public boolean equals(Object obj) { argument
102 if (!(obj instanceof InterfaceAddress)) {
105 InterfaceAddress cmp = (InterfaceAddress) obj;
H A DProxy.java143 * @param obj the object to compare against.
148 public final boolean equals(Object obj) { argument
149 if (obj == null || !(obj instanceof Proxy))
151 Proxy p = (Proxy) obj;
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupID.java100 * @param obj the Object to compare with
105 public boolean equals(Object obj) { argument
106 if (this == obj) {
108 } else if (obj instanceof ActivationGroupID) {
109 ActivationGroupID id = (ActivationGroupID)obj;
H A DActivationID.java146 * @param obj the Object to compare with
151 public boolean equals(Object obj) { argument
152 if (obj instanceof ActivationID) {
153 ActivationID id = (ActivationID) obj;
/openjdk7/jdk/src/share/classes/java/rmi/dgc/
H A DVMID.java99 public boolean equals(Object obj) { argument
100 if (obj instanceof VMID) {
101 VMID vmid = (VMID) obj;
/openjdk7/jdk/src/share/classes/java/rmi/registry/
H A DRegistry.java111 * @param obj a reference to a remote object (usually a stub)
125 * <code>null</code>, or if <code>obj</code> is <code>null</code>
127 public void bind(String name, Remote obj) argument
159 * @param obj a reference to a remote object (usually a stub)
171 * <code>null</code>, or if <code>obj</code> is <code>null</code>
173 public void rebind(String name, Remote obj) argument
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSigner.java123 * @param obj the object to test for equality with this object.
127 public boolean equals(Object obj) { argument
128 if (obj == null || (!(obj instanceof CodeSigner))) {
131 CodeSigner that = (CodeSigner)obj;
H A DPermission.java130 * @param obj the object we are testing for equality with this object.
135 public abstract boolean equals(Object obj); argument
H A DTimestamp.java120 * @param obj the object to test for equality with this timestamp.
124 public boolean equals(Object obj) { argument
125 if (obj == null || (!(obj instanceof Timestamp))) {
128 Timestamp that = (Timestamp)obj;
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DECFieldF2m.java213 * @param obj the object to be compared.
214 * @return true if <code>obj</code> is an instance
218 public boolean equals(Object obj) { argument
219 if (this == obj) return true;
220 if (obj instanceof ECFieldF2m) {
223 return ((m == ((ECFieldF2m)obj).m) &&
224 (Arrays.equals(ks, ((ECFieldF2m) obj).ks)));
H A DECPoint.java92 * @param obj the object to be compared.
93 * @return true if <code>obj</code> is an instance of
96 public boolean equals(Object obj) { argument
97 if (this == obj) return true;
99 if (obj instanceof ECPoint) {
100 return ((x.equals(((ECPoint)obj).x)) &&
101 (y.equals(((ECPoint)obj).y)));
/openjdk7/jdk/src/share/classes/java/text/
H A DParsePosition.java113 public boolean equals(Object obj) argument
115 if (obj == null) return false;
116 if (!(obj instanceof ParsePosition))
118 ParsePosition other = (ParsePosition) obj;
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DRC2ParameterSpec.java129 * @param obj the object to test for equality with this object.
132 * <code>obj</code> is null or otherwise.
134 public boolean equals(Object obj) { argument
135 if (obj == this) {
138 if (!(obj instanceof RC2ParameterSpec)) {
141 RC2ParameterSpec other = (RC2ParameterSpec) obj;
H A DRC5ParameterSpec.java169 * @param obj the object to test for equality with this object.
172 * <code>obj</code> is null or otherwise.
174 public boolean equals(Object obj) { argument
175 if (obj == this) {
178 if (!(obj instanceof RC5ParameterSpec)) {
181 RC5ParameterSpec other = (RC5ParameterSpec) obj;
H A DSecretKeySpec.java208 * @param obj the object to test for equality with this object.
211 * <code>obj</code> is null or otherwise.
213 public boolean equals(Object obj) { argument
214 if (this == obj)
217 if (!(obj instanceof SecretKey))
220 String thatAlg = ((SecretKey)obj).getAlgorithm();
229 byte[] thatKey = ((SecretKey)obj).getEncoded();
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfo.java85 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanAttributeInfo</code> instance for equality.
89 * <li><var>obj</var> is non null,</li>
90 * <li><var>obj</var> also implements the <code>OpenMBeanAttributeInfo</code> interface,</li>
96 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
99 * @param obj the object to be compared for equality with this <code>OpenMBeanAttributeInfo</code> instance;
103 public boolean equals(Object obj); argument
H A DOpenMBeanConstructorInfo.java91 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanConstructorInfo</code> instance for equality.
95 * <li><var>obj</var> is non null,</li>
96 * <li><var>obj</var> also implements the <code>OpenMBeanConstructorInfo</code> interface,</li>
100 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
103 * @param obj the object to be compared for equality with this <code>OpenMBeanConstructorInfo</code> instance;
107 public boolean equals(Object obj); argument
H A DOpenMBeanInfo.java140 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanInfo</code> instance for equality.
144 * <li><var>obj</var> is non null,</li>
145 * <li><var>obj</var> also implements the <code>OpenMBeanInfo</code> interface,</li>
149 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
152 * @param obj the object to be compared for equality with this <code>OpenMBeanInfo</code> instance;
156 public boolean equals(Object obj); argument
H A DOpenMBeanOperationInfo.java132 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanOperationInfo</code> instance for equality.
136 * <li><var>obj</var> is non null,</li>
137 * <li><var>obj</var> also implements the <code>OpenMBeanOperationInfo</code> interface,</li>
143 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
146 * @param obj the object to be compared for equality with this <code>OpenMBeanOperationInfo</code> instance;
150 public boolean equals(Object obj); argument

Completed in 99 milliseconds

1234567891011>>