Searched defs:source (Results 1 - 25 of 587) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A Dpackage-info.java27 * Provides interfaces to represent source code as abstract syntax
34 package com.sun.source.tree;
H A DEmptyStatementTree.java26 package com.sun.source.tree;
H A DExpressionTree.java26 package com.sun.source.tree;
H A DStatementTree.java26 package com.sun.source.tree;
H A DAnnotationTree.java26 package com.sun.source.tree;
H A DArrayAccessTree.java26 package com.sun.source.tree;
H A DArrayTypeTree.java26 package com.sun.source.tree;
H A DAssertTree.java26 package com.sun.source.tree;
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A Dpackage-info.java33 package com.sun.source.util;
/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DMixedSource.java27 * @summary Annotations definitions are allowed using -source 1.4 but not annotations
30 * @compile/fail -source 1.4 MixedSource.java
33 package mixed.source;
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSetEvent.java39 * the source of the event.
50 * @param source the <code>RowSet</code> object whose data has changed or
52 * @throws IllegalArgumentException if <code>source</code> is null.
54 public RowSetEvent(RowSet source) argument
55 { super(source); }
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DChangeEvent.java32 * state has changed in the event source.
49 * @param source the Object that is the source of the event
52 public ChangeEvent(Object source) { argument
53 super(source);
H A DMenuEvent.java32 * the menu which is the event source has been posted,
51 * @param source the Object that originated the event
54 public MenuEvent(Object source) { argument
55 super(source);
H A DPopupMenuEvent.java30 * PopupMenuEvent only contains the source of the event which is the JPoupMenu
48 * @param source the Object that originated the event
51 public PopupMenuEvent(Object source) { argument
52 super(source);
H A DCaretEvent.java32 * the text caret has changed in the event source.
50 * @param source the object responsible for the event
52 public CaretEvent(Object source) { argument
53 super(source);
H A DTreeExpansionEvent.java32 * An event used to identify a single path in a tree. The source
61 * @param source the Object that originated the event
66 public TreeExpansionEvent(Object source, TreePath path) { argument
67 super(source);
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DFlavorEvent.java33 * {@link Clipboard} (the event source).
44 * @param source the <code>Clipboard</code> that is the source of the event
46 * @throws IllegalArgumentException if the {@code source} is {@code null}
48 public FlavorEvent(Clipboard source) { argument
49 super(source);
/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAppleScriptExecutionContext.h30 NSString *source; variable
37 @property (nonatomic, retain) NSString *source; variable
42 - (id) initWithSource:(NSString *)source context:(NSDictionary *)context;
/openjdk7/jdk/src/share/classes/sunw/util/
H A DEventObject.java57 public EventObject(Object source) { argument
58 super(source);
/openjdk7/jdk/src/share/classes/javax/print/event/
H A DPrintEvent.java39 * @param source is the source of the event
40 * @throws IllegalArgumentException if <code>source</code> is
43 public PrintEvent (Object source) { argument
44 super(source);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DUngrabEvent.java45 public UngrabEvent(Component source) { argument
46 super(source, UNGRAB_EVENT_ID);
/openjdk7/jdk/src/share/classes/sun/awt/event/
H A DIgnorePaintEvent.java39 public IgnorePaintEvent(Component source, int id, Rectangle updateRect) { argument
40 super(source, id, updateRect);
/openjdk7/jdk/src/share/classes/java/util/
H A DEventObject.java32 * All Events are constructed with a reference to the object, the "source",
46 protected transient Object source; field in class:EventObject
51 * @param source The object on which the Event initially occurred.
52 * @exception IllegalArgumentException if source is null.
54 public EventObject(Object source) { argument
55 if (source == null)
56 throw new IllegalArgumentException("null source");
58 this.source = source;
67 return source;
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOReadWarningListener.java54 * @param source the <code>ImageReader</code> object calling this method.
57 void warningOccurred(ImageReader source, String warning); argument
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimerAlarmClockNotification.java47 * @param source the source.
49 public TimerAlarmClockNotification(TimerAlarmClock source) { argument
50 super("", source, 0);

Completed in 198 milliseconds

1234567891011>>