Searched defs:source (Results 176 - 200 of 587) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnectionNotification.java106 * #getSource() source} of the notification depends on whether it
112 * server, the source is the {@link ObjectName} under which it is
117 * <li>For a connector client, the source is a reference to the
128 * @param source the connector server or client emitting the
137 * this source.
146 * <code>source</code>, or <code>connectionId</code> is null.
152 Object source,
158 throw an exception if the type or source is null, because
164 nonNull(source),
168 if (type == null || source
151 JMXConnectionNotification(String type, Object source, String connectionId, long sequenceNumber, String message, Object userData) argument
[all...]
/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/media/sound/
H A DModelConnectionBlock.java30 * Connection blocks are used to connect source variable
55 public ModelConnectionBlock(ModelSource source, argument
57 if (source != null) {
59 this.sources[0] = source;
64 public ModelConnectionBlock(ModelSource source, double scale, argument
66 if (source != null) {
68 this.sources[0] = source;
74 public ModelConnectionBlock(ModelSource source, ModelSource control, argument
76 if (source != null) {
79 this.sources[0] = source;
89 ModelConnectionBlock(ModelSource source, ModelSource control, double scale, ModelDestination destination) argument
125 setSources(ModelSource[] source) argument
129 addSource(ModelSource source) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DItemEvent.java117 * <code>IllegalArgumentException</code> if <code>source</code>
120 * @param source The <code>ItemSelectable</code> object
130 * @throws IllegalArgumentException if <code>source</code> is null
135 public ItemEvent(ItemSelectable source, int id, Object item, int stateChange) { argument
136 super(source, id);
147 return (ItemSelectable)source;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterNode.java65 public void changed(Filter source) {
109 public void changed(FilterTopComponent source) { argument
110 setSelected(source.getFilterChain().containsFilter(filter));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DEdge.java33 private Node<N, E> source; field in class:Edge
36 protected Edge(Graph<N, E> graph, Node<N, E> source, Node<N, E> dest, E data) { argument
38 this.source = source;
40 assert source != null;
42 assert source.getGraph() == dest.getGraph();
43 assert source.getGraph() != null;
48 return source;
64 source.getGraph().removeEdge(this, null);
68 return source
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DNextDiagramAction.java102 public void changed(DiagramViewModel source) { argument
103 update(source);
H A DPrevDiagramAction.java102 public void changed(DiagramViewModel source) { argument
103 update(source);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReaderSpi.java76 public boolean canDecodeInput(Object source) throws IOException { argument
77 if (!(source instanceof ImageInputStream)) {
81 ImageInputStream stream = (ImageInputStream)source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DDOMForestParser.java72 public void parse(InputSource source, ContentHandler handler, EntityResolver entityResolver, ErrorHandler errHandler) throws SAXException, IOException { argument
76 public void parse(InputSource source, ContentHandler handler, ErrorHandler errorHandler, EntityResolver entityResolver) argument
79 String systemId = source.getSystemId();
88 fallbackParser.parse(source, handler, errorHandler, entityResolver);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DDataSourceSource.java55 private final DataSource source; field in class:DataSourceSource
72 public DataSourceSource(DataSource source) throws MimeTypeParseException { argument
73 this.source = source;
75 String ct = source.getContentType();
99 r = new InputStreamReader(source.getInputStream(),charset);
112 is = source.getInputStream();
121 return source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DEPRRecipe.java115 public EPRRecipe addMetadata(Source source) { argument
116 if(source==null) throw new IllegalArgumentException();
117 metadata.add(source);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DJAXPParser.java65 public void parse( InputSource source, ContentHandler handler, argument
79 reader.parse(source);
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DSolarisWatchService.c64 (JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress, jint events)
68 if (port_associate((int)port, (int)source, object, (int)events, NULL) == -1) {
75 (JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress)
79 if (port_dissociate((int)port, (int)source, object) == -1) {
63 Java_sun_nio_fs_SolarisWatchService_portAssociate(JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress, jint events) argument
74 Java_sun_nio_fs_SolarisWatchService_portDissociate(JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress) argument
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4274639.java56 // returned will have the bean as the source object.
68 Object source = ((PropertyEditorSupport) editor).getSource();
69 if (source != bean)
70 throw new Error("unexpected source: " + source);
88 Object source = ((PropertyEditorSupport) editor).getSource();
89 if (source != editor)
90 throw new Error("unexpected source: " + source);
152 public StringEditor(Object source) { argument
[all...]
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestMethods.java47 Object source = new Object();
48 new TestMethods(source).fireVetoableChange(new PropertyChangeEvent(source, NAME, null, null));
49 new TestMethods(source).fireVetoableChange(NAME, null, null);
50 new TestMethods(source).fireVetoableChange(NAME, 0, 1);
51 new TestMethods(source).fireVetoableChange(NAME, true, false);
56 public TestMethods(Object source) { argument
57 super(source);
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DMulticastSendReceiveTests.java144 InetAddress source)
169 int id = sendDatagram(source, nif, group, port);
172 receiveDatagram(dc, source, id);
177 System.out.format("block %s\n", source.getHostAddress());
180 key.block(source);
181 id = sendDatagram(source, nif, group, port);
184 // unblock source, send message, message should be received
185 System.out.format("unblock %s\n", source.getHostAddress());
186 key.unblock(source);
187 id = sendDatagram(source, ni
141 test(ProtocolFamily family, NetworkInterface nif, InetAddress group, InetAddress source) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java26 package com.sun.source.util;
28 import com.sun.source.tree.*;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DScannerFactory.java59 final Source source; field in class:ScannerFactory
67 this.source = Source.instance(context);
/openjdk7/langtools/test/tools/javac/7142086/
H A DT7142086.java31 import com.sun.source.util.JavacTask;
52 String source; field in class:T7142086.TestClass
61 source = classTemplate.replace("#M", buf.toString());
66 return source;
74 String source; field in class:T7142086.AnSource
78 source = classTemplate.replace("#N", String.valueOf(n));
83 return source;
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DFooNumberFormat.java53 public Number parse(String source, ParsePosition parsePosition) { argument
54 return df.parse(source, parsePosition);
/openjdk7/jdk/test/java/util/logging/
H A DSimpleFormatterFormat.java46 System.setProperty(key, "%3$s:%4$s: %5$s [%1$tc] source: %2$s%6$s%n");
93 Pattern p = Pattern.compile("([\\.a-zA-Z:]+) (.*) \\[.*\\] source: (.*)");
137 String msg, String source) {
151 ss = source.split("\\s+");
156 throw new RuntimeException("Unexpected source: " + source);
135 verify(String expectedLogger, String expectedMsg, String logger, String level, String msg, String source) argument
/openjdk7/jdk/src/share/classes/sun/net/
H A DProgressEvent.java53 public ProgressEvent(ProgressSource source, URL url, String method, String contentType, ProgressSource.State state, long progress, long expected) { argument
54 super(source);
/openjdk7/jdk/src/share/sample/nio/file/
H A DCopy.java4 * Redistribution and use in source and binary forms, with or without
8 * - Redistributions of source code must retain the above copyright
33 * This source code is provided to illustrate the usage of a given feature
63 * Copy source file to target location. If {@code prompt} is true then
67 static void copyFile(Path source, Path target, boolean prompt, boolean preserve) { argument
73 Files.copy(source, target, options);
75 System.err.format("Unable to copy: %s: %s%n", source, x);
84 private final Path source; field in class:Copy.TreeCopier
89 TreeCopier(Path source, Path target, boolean prompt, boolean preserve) { argument
90 this.source
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A DW3CEndpointReference.java80 * @param source A source object containing valid XmlInfoset
85 * If the source does NOT contain a valid W3C WS-Addressing
88 * If the <code>null</code> <code>source</code> value is given
90 public W3CEndpointReference(Source source) { argument
92 W3CEndpointReference epr = w3cjc.createUnmarshaller().unmarshal(source,W3CEndpointReference.class).getValue();

Completed in 247 milliseconds

1234567891011>>