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

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTreeSelectionEvent.java202 * Returns a copy of the receiver, but with the source being newSource.
204 public Object cloneWithSource(Object newSource) { argument
206 return new TreeSelectionEvent(newSource, paths,areNew,
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_AWTEvent.c75 jobject newSource)
88 /* get the widget out of the peer newSource */
90 JNU_GetLongFieldAsPtr(env, newSource, mComponentPeerIDs.pData);
124 jobject newSource)
74 Java_java_awt_AWTEvent_nativeSetSource(JNIEnv *env, jobject self, jobject newSource) argument
123 Java_java_awt_AWTEvent_nativeSetSource(JNIEnv *env, jobject self, jobject newSource) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_AWTEvent.cpp90 (JNIEnv *env, jobject self, jobject newSource)
103 JNI_CHECK_PEER_RETURN(newSource);
89 Java_java_awt_AWTEvent_nativeSetSource(JNIEnv *env, jobject self, jobject newSource) argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DCausedFocusEvent.java82 public static FocusEvent retarget(FocusEvent e, Component newSource) { argument
85 return new CausedFocusEvent(newSource, e.getID(), e.isTemporary(), e.getOppositeComponent(),
/openjdk7/langtools/test/tools/javac/annotations/6550655/
H A DT6550655.java79 void replaceEnum(String newSource) { argument
80 compile(null, new JavaSource("Replace.java", newSource));
/openjdk7/jdk/src/share/classes/java/awt/
H A DAWTEvent.java359 * @param newSource the new Object to which the event should be dispatched
362 public void setSource(Object newSource) { argument
363 if (source == newSource) {
368 if (newSource instanceof Component) {
369 comp = (Component)newSource;
377 source = newSource;

Completed in 31 milliseconds