Searched defs:source (Results 151 - 175 of 587) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DLineMap.java26 package com.sun.source.tree;
H A DMethodTree.java26 package com.sun.source.tree;
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DJavacTask.java26 package com.sun.source.util;
28 import com.sun.source.tree.CompilationUnitTree;
29 import com.sun.source.tree.Tree;
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DFooDateFormat.java47 public Date parse(String source, ParsePosition pos) { argument
48 return sdf.parse(source, pos);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DMembershipRegistry.java52 InetAddress source)
61 if (source == null) {
67 // already have source-specific membership so return key
70 throw new IllegalStateException("Already have source-specific membership");
71 if (source.equals(key.sourceAddress()))
51 checkMembership(InetAddress group, NetworkInterface interf, InetAddress source) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DProtocolSourceMessage.java26 package com.sun.xml.internal.ws.message.source;
61 public ProtocolSourceMessage(Source source, SOAPVersion soapVersion) { argument
62 XMLStreamReader reader = SourceReaderFactory.createSourceReader(source, true);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAbsoluteIterator.java51 public AbsoluteIterator(DTMAxisIterator source) { argument
52 _source = source;
53 // System.out.println("AI source = " + source + " this = " + this);
77 clone._source = _source.cloneIterator(); // resets source
H A DForwardPositionIterator.java69 public ForwardPositionIterator(DTMAxisIterator source) { argument
70 _source = source;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DXSLTCSource.java50 * Create a new XSLTC-specific source from a system ID
58 * Create a new XSLTC-specific source from a JAXP Source
60 public XSLTCSource(Source source) argument
62 _source = source;
109 Source source = _source;
110 if (source == null) {
112 source = new StreamSource(_systemId);
131 idom = (SAXImpl)dtmManager.getDTM(source, true, wsfilter, false, false, hasIdCall);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DStAXValidatorHelper.java66 public void validate(Source source, Result result) argument
91 identityTransformer1.transform( source, new SAXResult(handler) );
103 new Object [] {source.getClass().getName(), result.getClass().getName()}));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DEntityResolver2Wrapper.java198 private XMLInputSource createXMLInputSource(InputSource source, String baseURI) { argument
200 String publicId = source.getPublicId();
201 String systemId = source.getSystemId();
203 InputStream byteStream = source.getByteStream();
204 Reader charStream = source.getCharacterStream();
205 String encoding = source.getEncoding();
H A DStAXInputSource.java41 public StAXInputSource(XMLStreamReader source) { argument
42 this(source, false);
45 public StAXInputSource(XMLStreamReader source, boolean consumeRemainingContent) { argument
46 super(null, source.getLocation().getSystemId(), null);
47 if (source == null) {
50 fStreamReader = source;
55 public StAXInputSource(XMLEventReader source) { argument
56 this(source, false);
59 public StAXInputSource(XMLEventReader source, boolean consumeRemainingContent) { argument
60 super(null, getEventReaderSystemId(source), nul
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource.java89 public void startParse(InputSource source) throws SAXException; argument
/openjdk7/jaxp/src/javax/xml/transform/sax/
H A DSAXSource.java38 * input source that is not
57 * no SAX source is set using
60 * create an empty source {@link org.xml.sax.InputSource} using
75 * @param inputSource A SAX input source reference that must be non-null
92 * @param inputSource An input source reference that must be non-null
136 * Set the system identifier for this Source. If an input source
138 * input source, otherwise it will create a new input source.
174 * The XMLReader to be used for the source tree input. May be null.
179 * <p>The SAX InputSource to be used for the source tre
192 sourceToInputSource(Source source) argument
[all...]
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPath.java275 * <p>If <code>expression</code>, <code>source</code> or <code>returnType</code> is <code>null</code>,
279 * @param source The input source of the document to evaluate over.
286 * @throws NullPointerException If <code>expression</code>, <code>source</code> or <code>returnType</code>
291 InputSource source,
299 * <p>This method calls {@link #evaluate(String expression, InputSource source, QName returnType)} with a
305 * <p>If <code>expression</code> or <code>source</code> is <code>null</code>,
309 * @param source The <code>InputSource</code> of the document to evaluate over.
315 * @throws NullPointerException If <code>expression</code> or <code>source</code> is <code>null</code>.
317 public String evaluate(String expression, InputSource source) argument
289 evaluate( String expression, InputSource source, QName returnType) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/
H A DPortableRemoteObject.java258 * @param source a previously connected object.
259 * @throws RemoteException if <code>source</code> is not connected
261 * <code>source</code>.
263 public void connect (Remote target, Remote source) argument
266 if (target == null || source == null) {
272 if (StubAdapter.isStub( source )) {
273 orb = StubAdapter.getORB( source ) ;
276 Tie tie = Util.getTie(source);
280 // assume that source is a JRMP object...
281 if (Utility.loadTie(source) !
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DInternalFrameEvent.java32 * <code>JInternalFrame</code> objects as the event source. This class has the
136 * @param source the <code>JInternalFrame</code> object that originated the event
139 public InternalFrameEvent(JInternalFrame source, int id) { argument
140 super(source, id);
188 return (source instanceof JInternalFrame)? (JInternalFrame)source : null;
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 DTableModelEvent.java40 * TableModelEvent(source); // The data, ie. all rows changed
41 * TableModelEvent(source, HEADER_ROW); // Structure change, reallocate TableColumns
42 * TableModelEvent(source, 1); // Row 1 changed
43 * TableModelEvent(source, 3, 6); // Rows 3 to 6 inclusive changed
44 * TableModelEvent(source, 2, 2, 6); // Cell at (2, 6) changed
45 * TableModelEvent(source, 3, 6, ALL_COLUMNS, INSERT); // Rows (3, 6) were inserted
46 * TableModelEvent(source, 3, 6, ALL_COLUMNS, DELETE); // Rows (3, 6) were deleted
105 public TableModelEvent(TableModel source) { argument
107 this(source, 0, Integer.MAX_VALUE, ALL_COLUMNS, UPDATE);
120 public TableModelEvent(TableModel source, in argument
127 TableModelEvent(TableModel source, int firstRow, int lastRow) argument
135 TableModelEvent(TableModel source, int firstRow, int lastRow, int column) argument
147 TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type) argument
[all...]
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/
H A DDefaultFormatterFactory.java283 * @param source JFormattedTextField requesting
289 JFormattedTextField source) {
292 if (source == null) {
295 Object value = source.getValue();
301 if (source.hasFocus()) {
288 getFormatter( JFormattedTextField source) argument
/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/java/beans/
H A DPropertyChangeEvent.java41 * An event source may send a null object as the name to indicate that an
52 * @param source The bean that fired the event.
58 public PropertyChangeEvent(Object source, String propertyName, argument
60 super(source);
158 sb.append("; source=").append(getSource());
/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOReadProgressListener.java59 * @param source the <code>ImageReader</code> object calling this method.
62 void sequenceStarted(ImageReader source, int minIndex); argument
70 * @param source the <code>ImageReader</code> object calling this method.
72 void sequenceComplete(ImageReader source); argument
80 * @param source the <code>ImageReader</code> object calling this method.
84 void imageStarted(ImageReader source, int imageIndex); argument
107 * @param source the <code>ImageReader</code> object calling this method.
111 void imageProgress(ImageReader source, float percentageDone); argument
119 * @param source the <code>ImageReader</code> object calling this
122 void imageComplete(ImageReader source); argument
135 thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex) argument
148 thumbnailProgress(ImageReader source, float percentageDone) argument
159 thumbnailComplete(ImageReader source) argument
169 readAborted(ImageReader source) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeChangeNotification.java90 * @param source The notification producer, that is, the MBean the attribute belongs to.
91 * @param sequenceNumber The notification sequence number within the source object.
99 public AttributeChangeNotification(Object source, long sequenceNumber, long timeStamp, String msg, argument
102 super(AttributeChangeNotification.ATTRIBUTE_CHANGE, source, sequenceNumber, timeStamp, msg);

Completed in 94 milliseconds

1234567891011>>