Searched defs:thing (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/javax/management/mxbean/
H A DOperationImpactTest.java39 void thing(); method in interface:OperationImpactTest.ThingMXBean
42 public void thing() {} method in class:OperationImpactTest.Thing
48 Thing thing = new Thing();
49 mbs.registerMBean(thing, on);
55 if (!op.getName().equals("thing"))
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRef.java93 * Sets the thing to the specified object.
94 * @param thing the specified object
96 public synchronized void setThing(Object thing) { argument
98 soft = new SoftReference(thing);
116 * Constructs a new Ref that initially points to thing.
118 public Ref(Object thing) { argument
119 setThing(thing);
/openjdk7/jdk/test/javax/management/monitor/
H A DCounterMonitorDeadlockTest.java190 public void setThing(int thing); argument
208 return thing;
211 public void setThing(int thing) { argument
212 this.thing = thing;
221 private volatile int thing; field in class:CounterMonitorDeadlockTest.Test
H A DGaugeMonitorDeadlockTest.java191 public void setThing(int thing); argument
209 return thing;
212 public void setThing(int thing) { argument
213 this.thing = thing;
222 private volatile int thing; field in class:GaugeMonitorDeadlockTest.Test
H A DStringMonitorDeadlockTest.java190 public void setThing(String thing); argument
208 return thing;
211 public void setThing(String thing) { argument
212 this.thing = thing;
221 private volatile String thing; field in class:StringMonitorDeadlockTest.Test
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DQueryHandler.java118 protected void printThing(JavaThing thing) { argument
119 if (thing == null) {
123 if (thing instanceof JavaHeapObject) {
124 JavaHeapObject ho = (JavaHeapObject) thing;
131 print(thing.toString());
139 print(thing.toString());

Completed in 81 milliseconds