Searched refs:object (Results 26 - 50 of 387) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DJobPrioritySupported.java73 * the passed in object. To be equivalent, all of the following conditions
77 * <CODE>object</CODE> is not null.
79 * <CODE>object</CODE> is an instance of class JobPrioritySupported.
82 * <CODE>object</CODE>'s value are equal.
85 * @param object Object to compare to.
87 * @return True if <CODE>object</CODE> is equivalent to this job
90 public boolean equals (Object object) { argument
92 return (super.equals(object) &&
93 object instanceof JobPrioritySupported);
H A DNumberOfDocuments.java65 * passed in object. To be equivalent, all of the following conditions
69 * <CODE>object</CODE> is not null.
71 * <CODE>object</CODE> is an instance of class NumberOfDocuments.
73 * This number of documents attribute's value and <CODE>object</CODE>'s
77 * @param object Object to compare to.
79 * @return True if <CODE>object</CODE> is equivalent to this number of
82 public boolean equals(Object object) { argument
83 return (super.equals (object) &&
84 object instanceof NumberOfDocuments);
H A DNumberOfInterveningJobs.java64 * to the passed in object. To be equivalent, all of the following
68 * <CODE>object</CODE> is not null.
70 * <CODE>object</CODE> is an instance of class NumberOfInterveningJobs.
73 * <CODE>object</CODE>'s value are equal.
76 * @param object Object to compare to.
78 * @return True if <CODE>object</CODE> is equivalent to this number of
81 public boolean equals(Object object) { argument
82 return (super.equals (object) &&
83 object instanceof NumberOfInterveningJobs);
H A DPagesPerMinute.java66 * passed in object. To be equivalent, all of the following conditions
70 * <CODE>object</CODE> is not null.
72 * <CODE>object</CODE> is an instance of class PagesPerMinute.
74 * This pages per minute attribute's value and <CODE>object</CODE>'s
78 * @param object Object to compare to.
80 * @return True if <CODE>object</CODE> is equivalent to this pages per
83 public boolean equals(Object object) { argument
84 return (super.equals (object) &&
85 object instanceof PagesPerMinute);
H A DPagesPerMinuteColor.java77 * the passed in object. To be equivalent, all of the following conditions
81 * <CODE>object</CODE> is not null.
83 * <CODE>object</CODE> is an instance of class PagesPerMinuteColor.
85 * This pages per minute attribute's value and <CODE>object</CODE>'s
89 * @param object Object to compare to.
91 * @return True if <CODE>object</CODE> is equivalent to this pages per
94 public boolean equals(Object object) { argument
95 return (super.equals(object) &&
96 object instanceof PagesPerMinuteColor);
H A DPrinterMoreInfo.java75 * passed in object. To be equivalent, all of the following conditions
79 * <CODE>object</CODE> is not null.
81 * <CODE>object</CODE> is an instance of class PrinterMoreInfo.
83 * This printer more info attribute's URI and <CODE>object</CODE>'s URI
87 * @param object Object to compare to.
89 * @return True if <CODE>object</CODE> is equivalent to this printer
92 public boolean equals(Object object) { argument
93 return (super.equals(object) &&
94 object instanceof PrinterMoreInfo);
H A DPrinterMoreInfoManufacturer.java77 * equivalent to the passed in object. To be equivalent, all of the
81 * <CODE>object</CODE> is not null.
83 * <CODE>object</CODE> is an instance of class
87 * <CODE>object</CODE>'s URI are equal.
90 * @param object Object to compare to.
92 * @return True if <CODE>object</CODE> is equivalent to this printer
95 public boolean equals(Object object) { argument
96 return (super.equals(object) &&
97 object instanceof PrinterMoreInfoManufacturer);
H A DQueuedJobCount.java63 * passed in object. To be equivalent, all of the following conditions
67 * <CODE>object</CODE> is not null.
69 * <CODE>object</CODE> is an instance of class QueuedJobCount.
71 * This queued job count attribute's value and <CODE>object</CODE>'s
75 * @param object Object to compare to.
77 * @return True if <CODE>object</CODE> is equivalent to this queued job
80 public boolean equals(Object object) { argument
81 return (super.equals (object) &&
82 object instanceof QueuedJobCount);
/openjdk7/hotspot/src/share/vm/prims/
H A Dwhitebox.hpp45 static int offset_for_field(const char* field_name, oop object,
47 static const char* lookup_jstring(const char* field_name, oop object);
48 static bool lookup_bool(const char* field_name, oop object);
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DDateTimeSyntax.java46 * object to construct a <code>java.util.Date</code> object, then use the
47 * <code>java.util.Date</code> object to construct the date-time attribute.
50 * minute, and so on, create a <code>java.util.Calendar</code> object and
106 * object. To be equivalent, all of the following conditions must be true:
109 * <CODE>object</CODE> is not null.
111 * <CODE>object</CODE> is an instance of class DateTimeSyntax.
114 * <CODE>object</CODE>'s <code>java.util.Date</code> value are
117 * @param object Object to compare to.
119 * @return True if <CODE>object</COD
122 equals(Object object) argument
[all...]
H A DIntegerSyntax.java96 * object. To be equivalent, all of the following conditions must be true:
99 * <CODE>object</CODE> is not null.
101 * <CODE>object</CODE> is an instance of class IntegerSyntax.
103 * This integer attribute's value and <CODE>object</CODE>'s value are
107 * @param object Object to compare to.
109 * @return True if <CODE>object</CODE> is equivalent to this integer
112 public boolean equals(Object object) { argument
114 return (object != null && object instanceof IntegerSyntax &&
115 value == ((IntegerSyntax) object)
[all...]
H A DURISyntax.java80 * @return A hashcode value for this object.
88 * object.
92 * <CODE>object</CODE> is not null.
94 * <CODE>object</CODE> is an instance of class URISyntax.
96 * This URI attribute's underlying URI and <CODE>object</CODE>'s
100 * @param object Object to compare to.
102 * @return True if <CODE>object</CODE> is equivalent to this URI
105 public boolean equals(Object object) { argument
106 return(object != null &&
107 object instanceo
[all...]
H A DTextSyntax.java108 * @return A hashcode value for this object.
116 * object. To be equivalent, all of the following conditions must be true:
119 * <CODE>object</CODE> is not null.
121 * <CODE>object</CODE> is an instance of class TextSyntax.
123 * This text attribute's underlying string and <CODE>object</CODE>'s
126 * This text attribute's locale and <CODE>object</CODE>'s locale are
130 * @param object Object to compare to.
132 * @return True if <CODE>object</CODE> is equivalent to this text
135 public boolean equals(Object object) { argument
136 return(object !
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DPainter.java65 * <p>Renders to the given {@link java.awt.Graphics2D} object. Implementations
68 * that the caller pass in a scratch graphics object. The <code>Graphics2D</code>
71 * <p>State on the graphics object may be honored by the <code>paint</code> method,
75 * <p>The supplied object parameter acts as an optional configuration argument.
82 * this parameter. They can thus be reused in any context. The <code>object</code>
83 * may be null. Implementations must not throw a NullPointerException if the object
102 * @param object an optional configuration parameter. This may be null.
106 public void paint(Graphics2D g, T object, int width, int height); argument
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitorMBean.java54 * Adds the specified object in the set of observed MBeans.
56 * @param object The object to observe.
57 * @exception java.lang.IllegalArgumentException the specified object is null.
60 public void addObservedObject(ObjectName object) throws java.lang.IllegalArgumentException; argument
63 * Removes the specified object from the set of observed MBeans.
65 * @param object The object to remove.
68 public void removeObservedObject(ObjectName object); argument
71 * Tests whether the specified object i
77 containsObservedObject(ObjectName object) argument
109 setObservedObject(ObjectName object) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
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/demo/jvmti/hprof/
H A Dhprof_monitor.h52 jobject object);
54 jobject object);
56 jobject object, jlong timeout);
58 jobject object, jboolean timed_out);
/openjdk7/langtools/test/tools/javac/generics/syntax/6318240/
H A DBarNeg2a.java32 BarNeg2a.Inner.InnerMost object = new BarNeg2a.Inner<?>.InnerMost(); field in class:BarNeg2a
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DSingleEntryRegistry.java46 SingleEntryRegistry(int port, String name, Remote object) argument
50 this.object = object;
57 Remote object)
61 this.object = object;
70 return object;
88 private final Remote object; field in class:SingleEntryRegistry
53 SingleEntryRegistry(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, String name, Remote object) argument
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DTestNew.java67 public boolean equals(Object object) { argument
68 if (object instanceof TestNew) {
69 TestNew test = (TestNew) object;
85 private static void validate(Object object, String...messages) { argument
86 if (!object.equals(new TestNew(messages))) {
87 throw new Error("expected object");
/openjdk7/jdk/test/java/beans/XMLEncoder/4741757/
H A DAbstractTest.java37 static void test(AbstractTest object) { argument
42 object.getClass(),
45 encoder.writeObject(object);
55 if (object.getValue() != result.getValue())
56 throw new Error("Should be " + object);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4880633.java42 ValueObject object = new ValueObject();
43 object.setA("Value a" + i);
44 object.setAa("Value aa" + i);
45 object.setAaa("Value aaa" + i);
46 object.setAaaa("Value aaaa" + i);
47 object.setAaaaa("Value aaaaa" + i);
48 object.setAaaaaa("Value aaaaaa" + i);
49 object.setAaaaaaa("Value aaaaaaa" + i);
50 object.setAaaaaaaa("Value aaaaaaaa" + i);
51 object
124 private final Object object; field in class:Test4880633
126 Test4880633(Object object) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJInvocation.java41 private JGenerable object; field in class:JInvocation
66 * Invokes a method on an object.
68 * @param object
69 * JExpression for the object upon which
76 JInvocation(JExpression object, String name) { argument
77 this( (JGenerable)object, name );
80 JInvocation(JExpression object, JMethod method) { argument
81 this( (JGenerable)object, method );
95 private JInvocation(JGenerable object, String name) { argument
96 this.object
102 JInvocation(JGenerable object, JMethod method) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisWatchService.java133 // pointer to native file_obj object
134 private final long object; field in class:SolarisWatchService.SolarisWatchKey
146 long object,
151 this.object = object;
164 public long object() { method in class:SolarisWatchService.SolarisWatchKey
165 return object;
225 // events that tell us not to re-associate the object
240 // maps file_obj object to Node
304 long object
143 SolarisWatchKey(SolarisWatchService watcher, UnixPath dir, UnixFileKey fileKey, long object, Set<? extends WatchEvent.Kind<?>> events) argument
681 releaseObject(long object, boolean dissociate) argument
702 long object(); method in interface:SolarisWatchService.Node
718 private final long object; field in class:SolarisWatchService.EntryNode
722 EntryNode(long object, Path name, DirectoryNode parent) argument
729 public long object() { method in class:SolarisWatchService.EntryNode
748 portAssociate(int port, int source, long object, int events) argument
751 portDissociate(int port, int source, long object) argument
[all...]

Completed in 67 milliseconds

1234567891011>>