Searched refs:source (Results 176 - 200 of 878) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DListDataEvent.java91 * @param source the source Object (typically <code>this</code>)
97 public ListDataEvent(Object source, int type, int index0, int index1) { argument
98 super(source);
H A DListSelectionEvent.java37 * generally query the source of the event for the new selected status of each
70 public ListSelectionEvent(Object source, int firstIndex, int lastIndex, argument
73 super(source);
116 " source=" + getSource() +
H A DMenuKeyEvent.java57 * @param source the Component that originated the event
71 public MenuKeyEvent(Component source, int id, long when, int modifiers, argument
74 super(source, id, when, modifiers, keyCode, keyChar);
H A DMenuDragMouseEvent.java56 * <p>Absolute coordinates xAbs and yAbs are set to source's location on screen plus
57 * relative coordinates x and y. xAbs and yAbs are set to zero if the source is not showing.
59 * @param source the Component that originated the event
78 public MenuDragMouseEvent(Component source, int id, long when, argument
82 super(source, id, when, modifiers, x, y, clickCount, popupTrigger);
92 * @param source the Component that originated the event
116 public MenuDragMouseEvent(Component source, int id, long when, argument
121 super(source, id, when, modifiers, x, y, xAbs, yAbs, clickCount,
H A DTreeSelectionEvent.java34 * TreeSelectionListeners will generally query the source of
68 * @param source source of event
71 public TreeSelectionEvent(Object source, TreePath[] paths, argument
75 super(source);
87 * @param source source of event
92 public TreeSelectionEvent(Object source, TreePath path, boolean isNew, argument
96 super(source);
202 * Returns a copy of the receiver, but with the source bein
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFormSubmitEvent.java53 * @param source the object responsible for the event
56 * @param sourceElement the element that corresponds to the source
62 FormSubmitEvent(Object source, EventType type, URL targetURL, argument
65 super(source, type, targetURL, sourceElement, targetFrame);
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimerNotification.java66 * @param source The notification producer.
67 * @param sequenceNumber The notification sequence number within the source object.
73 public TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id) { argument
75 super(type, source, sequenceNumber, timeStamp, msg);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpTableEntryNotification.java60 * @param source The notification producer.
62 * source object.
70 SnmpTableEntryNotification(String type, Object source, argument
74 super(type, source, sequenceNumber, timeStamp);
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DNTNumericCredential.java75 Object[] source = {Long.toString(impersonationToken)};
76 return form.format(source);
H A DNTSidDomainPrincipal.java78 Object[] source = {getName()};
79 return form.format(source);
H A DNTSidGroupPrincipal.java73 Object[] source = {getName()};
74 return form.format(source);
H A DNTSidPrimaryGroupPrincipal.java75 Object[] source = {getName()};
76 return form.format(source);
H A DNTSidUserPrincipal.java72 Object[] source = {getName()};
73 return form.format(source);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCurrentFrameChangedEvent.java27 * This source code is provided to illustrate the usage of a given feature
48 public CurrentFrameChangedEvent(Object source, ThreadInfo tinfo, argument
50 super(source);
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DPaintEvent.java70 * This is the rectangle that represents the area on the source
88 * source component and type.
90 * <code>IllegalArgumentException</code> if <code>source</code>
93 * @param source The object where the event originated
98 * @throws IllegalArgumentException if <code>source</code> is null
103 public PaintEvent(Component source, int id, Rectangle updateRect) { argument
104 super(source, id);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DAbstractCElement.java42 * The location in the source file where this class was declared.
49 protected AbstractCElement(Model model, XSComponent source, Locator locator, CCustomizations customizations) { argument
50 super(model, source, customizations);
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePathScanner.java26 package com.sun.source.util;
28 import com.sun.source.tree.*;
/openjdk7/langtools/test/tools/javadoc/
H A DT6551367.java46 File source = new File(testSrc, file);
49 new String[]{source.getPath(), "-d", destDir.getAbsolutePath()});
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DTransfer.java63 File source = File.createTempFile("source", null);
64 source.deleteOnExit();
68 FileOutputStream fos = new FileOutputStream(source);
71 "Use the source, Luke!".getBytes()));
74 FileInputStream fis = new FileInputStream(source);
103 source.delete();
111 Pipe.SourceChannel source = p.source();
134 long bytesWritten = fc.transferFrom(source,
[all...]
/openjdk7/langtools/test/tools/javac/scope/7046348/
H A DEagerInterfaceCompletionTest.java61 compile(null, hierarchyKind.source);
64 compile(dc, testKind.source);
125 JavaSource source; field in class:EagerInterfaceCompletionTest.HierarchyKind
128 this.source = new JavaSource("Test1.java", code);
154 JavaSource source; field in class:EagerInterfaceCompletionTest.TestKind
157 this.source = new JavaSource("Test2.java", code);
192 String source; field in class:EagerInterfaceCompletionTest.JavaSource
194 public JavaSource(String filename, String source) { argument
196 this.source = source;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDataPusher.java45 private final SourceDataLine source; field in class:DataPusher
48 // stream as source data
51 // byte array as source data
73 this.source = sourceLine;
79 this.source = sourceLine;
97 if (!source.isOpen()) {
98 if (DEBUG || Printer.trace)Printer.trace("DataPusher: source.open()");
99 source.open(format);
101 if (DEBUG || Printer.trace)Printer.trace("DataPusher: source.flush()");
102 source
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DJCDiagnostic.java87 * @param source The source of the compilation unit, if any, in which to report the error.
88 * @param pos The source position at which to report the error.
93 DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
94 return create(ERROR, null, defaultErrorFlags, source, pos, key, args);
99 * @param source The source of the compilation unit, if any, in which to report the warning.
100 * @param pos The source position at which to report the warning.
106 DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) {
107 return create(WARNING, null, EnumSet.of(DiagnosticFlag.MANDATORY), source, po
92 error( DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
105 mandatoryWarning( DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
119 mandatoryWarning( LintCategory lc, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
144 warning( DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
158 warning( LintCategory lc, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
169 mandatoryNote(DiagnosticSource source, String key, Object... args) argument
189 note( DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
213 create( DiagnosticType kind, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
228 create( DiagnosticType kind, LintCategory lc, Set<DiagnosticFlag> flags, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
346 private final DiagnosticSource source; field in class:JCDiagnostic
365 JCDiagnostic(DiagnosticFormatter<JCDiagnostic> formatter, DiagnosticType dt, LintCategory lc, Set<DiagnosticFlag> flags, DiagnosticSource source, DiagnosticPosition pos, String key, Object... args) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHelper.java32 * specific source and result types.</p>
38 public void validate(Source source, Result result) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DV9CMoveDecoder.java57 ImmediateOrRegister source = null;
59 source = new Immediate(new Short((short) extractSignedIntFromNBits(instruction, numBits)));
61 source = SPARCRegisters.getRegister(getSourceRegister2(instruction));
63 return source;
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DNotificationBufferFilter.java39 ObjectName source, Notification notif);
38 apply(List<TargetedNotification> targetedNotifs, ObjectName source, Notification notif) argument

Completed in 391 milliseconds

1234567891011>>