Searched refs:nested (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DSentEvent.java32 * A wrapping tag for a nested AWTEvent which indicates that the event was
49 private AWTEvent nested; field in class:SentEvent
55 SentEvent(AWTEvent nested) { argument
56 this(nested, null);
58 SentEvent(AWTEvent nested, AppContext toNotify) { argument
59 super((nested != null)
60 ? nested.getSource()
63 this.nested = nested;
69 if (nested !
[all...]
H A DSequencedEvent.java35 * precise order, even across multiple AppContexts. The nested events will be
38 * the nested event was destroyed (with a call to Component.removeNotify)
40 * the nested event is never dispatched.
54 private final AWTEvent nested; field in class:SequencedEvent
61 return ((SequencedEvent)sequencedEvent).nested;
71 * nested event.
73 * @param nested the AWTEvent which this SequencedEvent's dispatch()
76 public SequencedEvent(AWTEvent nested) { argument
77 super(nested.getSource(), ID);
78 this.nested
[all...]
H A DDefaultKeyboardFocusManager.java198 public DefaultKeyboardFocusManagerSentEvent(AWTEvent nested, argument
200 super(nested, toNotify);
/openjdk7/jaxp/src/javax/xml/stream/
H A DFactoryConfigurationError.java41 Exception nested; field in class:FactoryConfigurationError
49 * Construct an exception with a nested inner exception
54 nested = e;
58 * Construct an exception with a nested inner exception
66 nested = e;
70 * Construct an exception with a nested inner exception
78 nested = e;
91 * Return the nested exception (if any)
93 * @return the nested exception or null
96 return nested;
[all...]
H A DXMLStreamException.java42 protected Throwable nested; field in class:XMLStreamException
64 * @param th a nested exception
68 nested = th;
74 * @param th a nested exception
79 nested = th;
85 * @param th a nested exception
93 nested = th;
113 * Gets the nested exception.
118 return nested;
/openjdk7/jdk/test/javax/swing/SwingWorker/6880336/
H A DNestedWorkers.java26 * @summary Test for nested SwingWorkers, i.e. when the second worker is
49 SwingWorker<String, Void> nested = new NestedWorkers(level + 1);
50 nested.execute();
51 nested.get();
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DClassDecl.java54 private ClassDeclaration nested = null; // a nested type field in class:ClassDecl
74 // A nested class with some accoutrements
82 nested = (ClassDeclaration)
124 // Check that static nested class has "static" modifier, even though
128 return nested.getModifiers();
143 return nested.getSimpleName();
156 return nested.getDeclaringType();
162 @Test(result={"nested", "object", "i"})
174 return nested
[all...]
H A DInterfaceDecl.java54 private InterfaceDeclaration nested = null; // a nested interface field in class:InterfaceDecl
58 nested = (InterfaceDeclaration)
94 return iDecl.equals(nested);
120 // Check that nested interface has "static" modifier, even though
124 return nested.getModifiers();
139 return nested.getSimpleName();
152 return nested.getDeclaringType();
170 return nested.getFormalTypeParameters();
176 return nested
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDeclaration.java245 String nested = getName().isInner() ? "nested " : "";
253 nested = "inner ";
255 nested = "local ";
263 return nested + type + name;
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractUnmarshallerImpl.java313 * This method checks the nested exception of SAXException
319 // check the nested exception to see if it's an UnmarshalException
320 Exception nested = e.getException();
321 if(nested instanceof UnmarshalException)
322 return (UnmarshalException)nested;
324 if(nested instanceof RuntimeException)
328 throw (RuntimeException)nested;
332 if(nested!=null)
333 return new UnmarshalException(nested);
/openjdk7/jdk/test/com/sun/jdi/
H A DAnyDebuggeeTest.java37 * As set up, it prints the time to find all nested types and all
123 List<ReferenceType> nested = rt.nestedTypes();
124 int sz = nested.size();
129 System.out.println(size + " nested types took " + (end - start) + " ms");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLoader.java241 public static void reportError(String msg, Exception nested, boolean canRecover) throws SAXException { argument
247 nested ), canRecover );
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java1012 UnicodeSet nested = null;
1022 // -------- Parse '[' of opening delimiter OR nested set.
1023 // If there is a nested set, use `setMode' to define how
1027 // characters representing a nested set in the symbol
1055 // otherwise restart loop for nested [], \p{}, etc.
1068 nested = (UnicodeSet) m;
1077 // -------- Handle a nested set. This either is inline in
1096 if (nested == null) {
1098 nested = scratch;
1102 nested
[all...]
/openjdk7/jdk/src/share/back/
H A DReferenceTypeImpl.c508 jclass *nested; local
510 error = allNestedClasses(clazz, &nested, &count);
517 (void)outStream_writeByte(out, referenceTypeTag(nested[i]));
518 (void)outStream_writeObjectRef(env, out, nested[i]);
520 if ( nested != NULL ) {
521 jvmtiDeallocate(nested);
/openjdk7/jdk/test/java/beans/Introspector/
H A DTestTypeResolver.java61 /* Every public nested class represents a test. In each case, either
62 * the class contains further nested classes, in which case we
71 Class<?>[] nested = c.getClasses();
72 Arrays.sort(nested, classNameComparator);
73 for (Class<?> n : nested)
79 if (nested.length == 0) {
82 "nested classes nor getThing() method");
/openjdk7/langtools/test/tools/javac/7003595/
H A DT7003595.java76 String getSource(String className, String outerName, String nested) { argument
78 replaceAll("#N", className).replaceAll("#B", nested);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationProxyMaker.java237 Class<? extends Annotation> nested =
239 value = generateAnnotation(env, c, nested);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DAnnotationProxyMaker.java237 Class<? extends Annotation> nested =
239 value = generateAnnotation(c, nested);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java477 AWTEvent nested = sea.getNested(event);
478 if (nested.getID() == WindowEvent.WINDOW_LOST_FOCUS &&
479 nested instanceof TimedWindowEvent)
481 TimedWindowEvent twe = (TimedWindowEvent)nested;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DReferenceTypeImpl.java579 List<ReferenceType> nested = new ArrayList<ReferenceType>();
591 nested.add(refType);
595 return nested;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactSyntax.java2264 final public void PrefixedAnnotationAttribute(Annotations a, boolean nested) throws ParseException { argument
2276 else if (ns.length() == 0 && !nested)
2278 else if (ns.equals(WellKnownNamespaces.RELAX_NG) && !nested)
2305 final public ParsedElementAnnotation AnnotationElement(boolean nested) throws ParseException { argument
2309 a = PrefixedAnnotationElement(nested);
2362 final public ParsedElementAnnotation PrefixedAnnotationElement(boolean nested) throws ParseException { argument
2375 else if (!nested && ns.equals(WellKnownNamespaces.RELAX_NG)) {

Completed in 106 milliseconds