Searched defs:obj (Results 401 - 425 of 1229) sorted by relevance

<<11121314151617181920>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextDataStore.java52 * @param obj the object reference to be bound.
56 void Bind(NameComponent n, org.omg.CORBA.Object obj, BindingType bt) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBVersionImpl.java73 public boolean equals( Object obj )
75 if (!(obj instanceof ORBVersion))
78 ORBVersion version = (ORBVersion)obj ;
91 public int compareTo(Object obj) { argument
96 return getORBType() - ((ORBVersion)obj).getORBType();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DJDKClassLoader.java166 public boolean equals(Object obj) { argument
170 if (obj == null)
173 CacheKey other = (CacheKey)obj;
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DIDLTypeHelper.java92 //public static com.sun.org.omg.CORBA.IDLType narrow (org.omg.CORBA.Object obj)
93 public static org.omg.CORBA.IDLType narrow (org.omg.CORBA.Object obj) argument
95 if (obj == null)
98 //else if (obj instanceof com.sun.org.omg.CORBA.IDLType)
99 else if (obj instanceof org.omg.CORBA.IDLType)
101 //return (com.sun.org.omg.CORBA.IDLType)obj;
102 return (org.omg.CORBA.IDLType)obj;
103 else if (!obj._is_a (id ()))
107 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
/openjdk7/corba/src/share/classes/com/sun/org/omg/SendingContext/
H A DCodeBaseHelper.java81 public static com.sun.org.omg.SendingContext.CodeBase narrow (org.omg.CORBA.Object obj) argument
83 if (obj == null)
85 else if (obj instanceof com.sun.org.omg.SendingContext.CodeBase)
86 return (com.sun.org.omg.SendingContext.CodeBase)obj;
87 else if (!obj._is_a (id ()))
91 org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DStub.java95 * @param obj the reference object with which to compare.
96 * @return <code>true</code> if this object is the same as the <code>obj</code>
99 public boolean equals(java.lang.Object obj) { argument
106 return stubDelegate.equals(this, obj);
/openjdk7/corba/src/share/classes/javax/rmi/
H A DPortableRemoteObject.java95 * @param obj the server object to export.
98 public static void exportObject(Remote obj) argument
103 proDelegate.exportObject(obj);
109 * @param obj the server object for which a stub is required. Must either be a subclass
115 public static Remote toStub (Remote obj) argument
119 return proDelegate.toStub(obj);
127 * @param obj the object to unexport.
131 public static void unexportObject(Remote obj) argument
135 proDelegate.unexportObject(obj);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/amd64/
H A DWindbgAMD64Thread.java68 public boolean equals(Object obj) { argument
69 if ((obj == null) || !(obj instanceof WindbgAMD64Thread)) {
73 return (((WindbgAMD64Thread) obj).getThreadID() == getThreadID());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ia64/
H A DWindbgIA64Thread.java78 public boolean equals(Object obj) { argument
79 if ((obj == null) || !(obj instanceof WindbgIA64Thread)) {
83 return (((WindbgIA64Thread) obj).getThreadID() == getThreadID());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/x86/
H A DWindbgX86Thread.java68 public boolean equals(Object obj) { argument
69 if ((obj == null) || !(obj instanceof WindbgX86Thread)) {
73 return (((WindbgX86Thread) obj).getThreadID() == getThreadID());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DBooleanValueImpl.java39 public boolean equals(Object obj) { argument
40 if ((obj != null) && (obj instanceof BooleanValue)) {
41 return (value == ((BooleanValue)obj).value())
42 && super.equals(obj);
H A DByteValueImpl.java39 public boolean equals(Object obj) { argument
40 if ((obj != null) && (obj instanceof ByteValue)) {
41 return (value == ((ByteValue)obj).value())
42 && super.equals(obj);
H A DCharValueImpl.java39 public boolean equals(Object obj) { argument
40 if ((obj != null) && (obj instanceof CharValue)) {
41 return (value == ((CharValue)obj).value()) &&
42 super.equals(obj);
H A DFloatValueImpl.java39 public boolean equals(Object obj) { argument
40 if ((obj != null) && (obj instanceof FloatValue)) {
41 return (value == ((FloatValue)obj).value()) &&
42 super.equals(obj);
H A DIntegerValueImpl.java39 public boolean equals(Object obj) { argument
40 if ((obj != null) && (obj instanceof IntegerValue)) {
41 return (value == ((IntegerValue)obj).value()) &&
42 super.equals(obj);
H A DLocalVariableImpl.java52 public boolean equals(Object obj) { argument
53 if ((obj != null) && (obj instanceof LocalVariableImpl)) {
54 LocalVariableImpl other = (LocalVariableImpl)obj;
57 super.equals(obj));
H A DLocationImpl.java63 public boolean equals(Object obj) { argument
64 if ((obj != null) && (obj instanceof Location)) {
65 Location other = (Location)obj;
68 super.equals(obj);
H A DLongValueImpl.java39 public boolean equals(Object obj) { argument
40 if ((obj != null) && (obj instanceof LongValue)) {
41 return (value == ((LongValue)obj).value()) &&
42 super.equals(obj);
H A DShortValueImpl.java39 public boolean equals(Object obj) { argument
40 if ((obj != null) && (obj instanceof ShortValue)) {
41 return (value == ((ShortValue)obj).value()) &&
42 super.equals(obj);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DDefaultOopVisitor.java32 private Oop obj; field in class:DefaultOopVisitor
39 public void setObj(Oop obj) { argument
40 this.obj = obj;
44 return obj;
H A DObjectHistogramElement.java44 public void updateWith(Oop obj) { argument
46 size = size + obj.getObjectSize();
H A DOopPrinter.java46 private Oop obj; field in class:OopPrinter
47 public void setObj(Oop obj) { this.obj = obj; } argument
48 public Oop getObj() { return obj; }
H A DOopVisitor.java37 public void setObj(Oop obj); argument
/openjdk7/jdk/src/share/classes/javax/print/
H A DPrintService.java475 * @param obj the reference object with which to compare.
476 * @return true if this service is the same as the obj argument,
479 public boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/javax/rmi/ssl/
H A DSslRMIServerSocketFactory.java290 public boolean equals(Object obj) { argument
291 if (obj == null) return false;
292 if (obj == this) return true;
293 if (!(obj instanceof SslRMIServerSocketFactory))
295 SslRMIServerSocketFactory that = (SslRMIServerSocketFactory) obj;

Completed in 192 milliseconds

<<11121314151617181920>>