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

1234567891011>>

/openjdk7/langtools/test/tools/javac/generics/syntax/6318240/
H A DBarNeg1a.java32 Object object = new BarNeg1a<?>.Inner.InnerMost(); field in class:BarNeg1a
H A DBarNeg2a.java32 BarNeg2a.Inner.InnerMost object = new BarNeg2a.Inner<?>.InnerMost(); field in class:BarNeg2a
/openjdk7/jdk/src/share/classes/java/security/
H A DGuard.java29 * <p> This interface represents a guard, which is an object that is used
30 * to protect access to another object.
33 * with a single <code>object</code> argument. <code>checkGuard</code> is
35 * to determine whether or not to allow access to the object.
46 * Determines whether or not to allow access to the guarded object
47 * <code>object</code>. Returns silently if access is allowed.
50 * @param object the object being protected by the guard.
55 void checkGuard(Object object) throws SecurityException; argument
H A DGuardedObject.java29 * A GuardedObject is an object that is used to protect access to
30 * another object.
32 * <p>A GuardedObject encapsulates a target object and a Guard object,
33 * such that access to the target object is possible
34 * only if the Guard object allows it.
35 * Once an object is encapsulated by a GuardedObject,
36 * access to that object is controlled by the <code>getObject</code>
38 * <code>checkGuard</code> method on the Guard object that is
53 private Object object; // th field in class:GuardedObject
66 GuardedObject(Object object, Guard guard) argument
[all...]
/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/langtools/test/tools/javac/generics/6956758/
H A DT6956758neg.java16 <T extends Object & I> T cloneObject(T object) throws Exception { argument
17 return (T)object.clone();
H A DT6956758pos.java39 <T extends C & I> T cloneObject(T object) throws Exception { argument
40 return (T)object.clone();
/openjdk7/jdk/src/share/back/
H A DClassObjectReferenceImpl.c35 jobject object; local
40 object = inStream_readObjectRef(env, in);
47 * class object id, so we bounce it right back.
51 tag = referenceTypeTag(object);
53 (void)outStream_writeObjectRef(env, out, object);
/openjdk7/jdk/test/java/beans/XMLEncoder/6777487/
H A DTestEncoder.java42 public static void test(Object provider, Object object, Object value) { argument
47 object.getClass(),
49 encoder.writeObject(object);
/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/com/sun/jdi/event/
H A DWatchpointEvent.java53 * Returns the object whose field is about to be accessed/modified.
57 * object in the target VM.
59 ObjectReference object(); method in interface:WatchpointEvent
63 * @throws ObjectCollectedException if object or class have been
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DChangedEvent.java32 private T object; field in class:ChangedEvent
37 public ChangedEvent(T object) { argument
38 this.object = object;
42 l.changed(object);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJCast.java42 private final JExpression object; field in class:JCast
50 * @param object
51 * JExpression for the object upon which
54 JCast(JType type, JExpression object) { argument
56 this.object = object;
60 f.p("((").g(type).p(')').g(object).p(')');
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DJAXBIntrospector.java30 * Provide access to JAXB xml binding data for a JAXB object.
49 * <p>Return true iff <code>object</code> represents a JAXB element.</p>
50 * <p>Parameter <code>object</code> is a JAXB element for following cases:
53 * <li>The class of <code>object</code> is annotated with
60 public abstract boolean isElement(Object object); argument
65 * @param jaxbElement is an object that {@link #isElement(Object)} returned true.
79 * @param jaxbElement object that #isElement(Object) returns true.
/openjdk7/jdk/test/java/beans/EventHandler/
H A DTest6788531.java56 public void run(T object) { argument
/openjdk7/jdk/test/java/beans/Statement/
H A DTest6788531.java52 public void run(T object) { argument
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DTestArray.java73 private static <T> T[] getArray(Class<T> component, int length, Object object) { argument
74 Class type = object.getClass();
81 if (length != Array.getLength(object)) {
84 return (T[]) object;
H A DTestByte.java51 private static void validate(byte value, Object object) { argument
52 if (!object.equals(Byte.valueOf(value))) {
H A DTestDouble.java53 private static void validate(double value, Object object) { argument
54 if (!object.equals(Double.valueOf(value))) {
H A DTestFloat.java53 private static void validate(float value, Object object) { argument
54 if (!object.equals(Float.valueOf(value))) {
H A DTestInt.java59 private static void validate(int value, Object object) { argument
60 if (!object.equals(Integer.valueOf(value))) {
H A DTestLong.java63 private static void validate(long value, Object object) { argument
64 if (!object.equals(Long.valueOf(value))) {
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");
H A DTestShort.java55 private static void validate(short value, Object object) { argument
56 if (!object.equals(Short.valueOf(value))) {
H A DTestString.java55 private static void validate(String name, Object object) { argument
56 if (!object.equals(name)) {

Completed in 134 milliseconds

1234567891011>>