Searched defs:source (Results 126 - 150 of 587) sorted by relevance

1234567891011>>

/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 DComponentEvent.java107 * <code>IllegalArgumentException</code> if <code>source</code>
110 * @param source The <code>Component</code> that originated the event
114 * @throws IllegalArgumentException if <code>source</code> is null
118 public ComponentEvent(Component source, int id) { argument
119 super(source, id);
130 return (source instanceof Component) ? (Component)source : null;
141 Rectangle b = (source !=null
142 ? ((Component)source).getBounds()
H A DContainerEvent.java100 * <code>IllegalArgumentException</code> if <code>source</code>
103 * @param source The <code>Component</code> object (container)
109 * @throws IllegalArgumentException if <code>source</code> is null
114 public ContainerEvent(Component source, int id, Component child) { argument
115 super(source, id);
127 return (source instanceof Container) ? (Container)source : null;
H A DFocusEvent.java129 * <code>IllegalArgumentException</code> if <code>source</code>
132 * @param source The <code>Component</code> that originated the event
140 * @throws IllegalArgumentException if <code>source</code> equals {@code null}
147 public FocusEvent(Component source, int id, boolean temporary, argument
149 super(source, id);
158 * <code>IllegalArgumentException</code> if <code>source</code>
161 * @param source The <code>Component</code> that originated the event
167 * @throws IllegalArgumentException if <code>source</code> equals {@code null}
172 public FocusEvent(Component source, int id, boolean temporary) { argument
173 this(source, i
191 FocusEvent(Component source, int id) argument
[all...]
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);
H A DTextEvent.java79 * <code>IllegalArgumentException</code> if <code>source</code>
82 * @param source The (<code>TextComponent</code>) object that
87 * @throws IllegalArgumentException if <code>source</code> is null
91 public TextEvent(Object source, int id) { argument
92 super(source, id);
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A DApplicationEvent.java41 ApplicationEvent(final Object source) { argument
42 super(source);
45 ApplicationEvent(final Object source, final String filename) { argument
46 super(source);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageReaderSpi.java66 public boolean canDecodeInput(Object source) throws IOException { argument
67 if (!(source instanceof ImageInputStream)) {
70 ImageInputStream iis = (ImageInputStream) source;
/openjdk7/jaxp/src/org/xml/sax/
H A DParser.java41 * <em>This module, both source code and documentation, is in the
60 * may reuse a parser object (possibly with a different input source)
180 * source (a character stream, a byte stream, or a URI).</p>
186 * different input source.</p>
188 * @param source The input source for the top-level of the
202 public abstract void parse (InputSource source) argument
/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);
H A DCValuePropertyInfo.java44 public CValuePropertyInfo(String name, XSComponent source, CCustomizations customizations, Locator locator, TypeUse type, QName typeName) { argument
45 super(name, type, typeName, source, customizations, locator);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DGraph.java40 private final Element source = new SourceNode(); field in class:Graph
55 // attach source and sink
56 Expression whole = new Sequence(new Sequence(source,body),sink);
65 source.assignDfsPostOrder(sink);
66 source.buildStronglyConnectedComponents(ccs);
72 if(source.checkCutSet(cc,visited)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DDOMForestParser.java70 InputSource source,
76 String systemId = source.getSystemId();
85 fallbackParser.parse( source, contentHandler, errorHandler, entityResolver );
69 parse( InputSource source, ContentHandler contentHandler, ErrorHandler errorHandler, EntityResolver entityResolver ) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIFactoryMethod.java52 public static void handle(XSComponent source, CPropertyInfo prop) { argument
53 BIInlineBinaryData inline = Ring.get(BGMBuilder.class).getBindInfo(source).get(BIInlineBinaryData.class);
H A DBIInlineBinaryData.java50 public static void handle(XSComponent source, CPropertyInfo prop) { argument
51 BIInlineBinaryData inline = Ring.get(BGMBuilder.class).getBindInfo(source).get(BIInlineBinaryData.class);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DCodeModelClassFactory.java63 public JDefinedClass createClass( JClassContainer parent, String name, Locator source ) {
64 return createClass( parent, JMod.PUBLIC, name, source );
66 public JDefinedClass createClass( JClassContainer parent, int mod, String name, Locator source ) {
67 return createClass(parent,mod,name,source,ClassType.CLASS);
70 public JDefinedClass createInterface( JClassContainer parent, String name, Locator source ) {
71 return createInterface( parent, JMod.PUBLIC, name, source );
73 public JDefinedClass createInterface( JClassContainer parent, int mod, String name, Locator source ) {
74 return createClass(parent,mod,name,source,ClassType.INTERFACE);
77 JClassContainer parent, String name, Locator source, ClassType kind ) {
78 return createClass(parent,JMod.PUBLIC,name,source,kin
76 createClass( JClassContainer parent, String name, Locator source, ClassType kind ) argument
80 createClass( JClassContainer parent, int mod, String name, Locator source, ClassType kind ) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DAppinfo.java39 public Appinfo source(String value); method in interface:Appinfo
H A DDocumentation.java39 public Documentation source(String value); method in interface:Documentation
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DPayloadSourceMessage.java26 package com.sun.xml.internal.ws.message.source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DSourceReaderFactory.java73 public static XMLStreamReader createSourceReader(Source source, boolean rejectDTDs) { argument
74 return createSourceReader(source, rejectDTDs, null);
77 public static XMLStreamReader createSourceReader(Source source, boolean rejectDTDs, String charsetName) { argument
79 if (source instanceof StreamSource) {
80 StreamSource streamSource = (StreamSource) source;
87 source.getSystemId(), new InputStreamReader(is, charsetName), rejectDTDs);
91 source.getSystemId(), is, rejectDTDs);
98 source.getSystemId(), reader, rejectDTDs);
102 source.getSystemId(), new URL(source
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DXMLParser.java44 * Parses the document identified by the given input source
63 void parse( InputSource source, ContentHandler handler, argument
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java45 * Copy file from source to target
47 static void copy(final WindowsPath source, argument
79 // check permissions. If the source file is a symbolic link then
83 source.checkRead();
87 // get attributes of source file
97 sourceHandle = source.openForReadAttributeAccess(followLinks);
99 x.rethrowAsIOException(source);
102 // source attributes
106 x.rethrowAsIOException(source);
138 // if source fil
258 move(WindowsPath source, WindowsPath target, CopyOption... options) argument
476 copySecurityAttributes(WindowsPath source, WindowsPath target, boolean followLinks) argument
[all...]
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DShortWrite.java77 SocketChannel source,
92 int n = source.write(buf);
114 try (SocketChannel source = SocketChannel.open(sa);
121 test(pool, source, sink, size);
127 test(pool, source, sink, size);
76 test(ExecutorService pool, SocketChannel source, SocketChannel sink, int size) argument
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DClassTree.java26 package com.sun.source.tree;
H A DCompilationUnitTree.java26 package com.sun.source.tree;
30 import com.sun.source.tree.LineMap;
33 * Represents the abstract syntax tree for compilation units (source

Completed in 77 milliseconds

1234567891011>>