Searched refs:Source (Results 1 - 25 of 326) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/javac/processing/errors/EnsureAnnotationTypeMismatchException/
H A DSource.java9 * @compile/fail/ref=Source.out -XDaccessInternalAPI -XDrawDiagnostics -processor Processor Source.java
25 class Source { class
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DServiceDescriptor.java30 import javax.xml.transform.Source;
41 * @return List of WSDL documents as {@link Source}.
42 * {@link javax.xml.transform.Source#getSystemId()} must be Non-null
44 public abstract @NotNull List<? extends Source> getWSDLs();
48 * @return List of XML schema documents as {@link Source}. {@link javax.xml.transform.Source#getSystemId()} must be Non-null.
51 public abstract @NotNull List<? extends Source> getSchemas();
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/
H A DLogicalMessage.java28 import javax.xml.transform.Source;
41 * returns a new {@code Source} that may be used to retrieve the entire
44 * <p>If the returned {@code Source} is an instance of
48 * {@code setPayload}. Other types of {@code Source} provide only
54 public Source getPayload();
64 public void setPayload(Source payload);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/
H A DLineMapImpl.java28 import jdk.nashorn.internal.runtime.Source;
31 private final Source source;
33 LineMapImpl(final Source source) {
H A DParserImpl.java44 import jdk.nashorn.internal.runtime.Source;
89 final Source src = Source.sourceFor(Objects.requireNonNull(file).getName(), file);
98 final Source src = Source.sourceFor(Objects.requireNonNull(path).toString(), path);
107 final Source src = Source.sourceFor(url.toString(), url);
116 final Source src = Source.sourceFor(Objects.requireNonNull(name), Objects.requireNonNull(reader));
125 final Source sr
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/transform/
H A DSource.java34 public interface Source { interface
37 * Set the system identifier for this Source.
57 * Indicates whether the {@code Source} object is empty. Empty means
58 * that there is no input available from this Source.
63 * @return true if the {@code Source} object is empty, false otherwise
H A DURIResolver.java30 * to turn a URI used in document(), xsl:import, or xsl:include into a Source object.
44 * @return A Source object, or null if the href cannot be resolved,
50 public Source resolve(String href, String base)
H A DTransformerFactory.java176 * Process the {@code Source} into a {@code Transformer}
177 * {@code Object}. The {@code Source} is an XSLT document that
185 * @param source {@code Source } of XSLT document used to create
187 * Examples of XML {@code Source}s include
197 * parsing the {@code Source} or it is not possible to create a
203 public abstract Transformer newTransformer(Source source)
208 * of the {@code Source} to the {@code Result}.
221 * Process the Source into a Templates object, which is a
236 public abstract Templates newTemplates(Source source)
241 * XML {@code Source} documen
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/developer/
H A DEPRRecipe.java32 import javax.xml.transform.Source;
69 private final List<Source> metadata = new ArrayList<Source>();
81 public @NotNull List<Source> getMetadata() {
115 public EPRRecipe addMetadata(Source source) {
121 public EPRRecipe addMetadata(Source... sources) {
122 for (Source s : sources)
127 public EPRRecipe addMetadata(Iterable<? extends Source> sources) {
128 for (Source s : sources)
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHelper.java27 import javax.xml.transform.Source;
39 public void validate(Source source, Result result)
/openjdk10/nashorn/test/src/jdk/nashorn/test/models/
H A DSourceHelper.java32 import jdk.nashorn.internal.runtime.Source;
35 * Helper class to facilitate script access of nashorn Source class.
42 return Source.baseURL(url);
46 return new String(Source.readFully(file));
50 return Source.sourceFor(url.toString(), url).getString();
54 return new String(Source.readFully(reader));
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DSource.java32 public class Source { class
37 public Source() { method in class:Source
59 public Source getSource();
62 public void addSourceNodes(Source s) {
/openjdk10/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/annotation/
H A DDomHandler.java30 import javax.xml.transform.Source;
104 * If non-null, the returned {@link Source} must contain a whole document
110 * an element into a {@link Source}.
118 Source marshal( ElementT n, ValidationEventHandler errorHandler );
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/validation/
H A DJaxpIssue43Test.java31 import javax.xml.transform.Source;
61 Source[] sources = getSchemaSources();
66 private Source[] getSchemaSources() throws Exception {
67 List<Source> list = new ArrayList<Source>();
69 Source source = new StreamSource(new FileInputStream(file), file);
84 return list.toArray(new Source[list.size()]);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DSource.java44 public enum Source { enum
46 // public static final Source JDK1_0 = new Source("1.0");
49 // public static final Source JDK1_1 = new Source("1.1");
79 private static final Context.Key<Source> sourceKey = new Context.Key<>();
81 public static Source instance(Context context) {
82 Source instance = context.get(sourceKey);
95 private static final Map<String,Source> tab = new HashMap<>();
97 for (Source
108 private Source(String name) { method in class:Source
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/xmlprovider1/xp1/
H A DTransformerFactoryImpl.java27 import javax.xml.transform.Source;
37 public Transformer newTransformer(Source source) throws TransformerConfigurationException {
47 public Templates newTemplates(Source source) throws TransformerConfigurationException {
52 public Source getAssociatedStylesheet(Source source, String media, String title, String charset)
/openjdk10/jdk/test/java/io/BufferedReader/
H A DFill.java42 static class Source extends Reader { class in class:Fill
47 Source(int shortFall) { method in class:Fill.Source
73 Reader r = new BufferedReader(new Source(shortFall), 10);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DCodeInstaller.java64 public void initialize(final Collection<Class<?>> classes, final Source source, final Object[] constants);
92 public void storeScript(final String cacheKey, final Source source, final String mainClassName, final Map<String, byte[]> classBytes,
101 public StoredScript loadScript(Source source, String functionKey);
H A DParserException.java37 // Source from which this ParserException originated
38 private final Source source;
64 public ParserException(final JSErrorType errorType, final String msg, final Source source, final int line, final int column, final long token) {
72 * Get the {@code Source} of this {@code ParserException}
75 public Source getSource() {
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/transform/sax/
H A DSAXTransformerFactory.java58 * the {@link #newXMLFilter(Source src)}
74 * @param src The Source of the transformation instructions.
81 public abstract TransformerHandler newTransformerHandler(Source src)
127 * Create an XMLFilter that uses the given Source as the
130 * @param src The Source of the transformation instructions.
137 public abstract XMLFilter newXMLFilter(Source src)
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/
H A DEnvelope.java33 import javax.xml.transform.Source;
43 * Get the content as a JAXP Source.
47 Source getContent();
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/
H A DSource.java44 /** A Source object maintains information about a source file.
54 public class Source implements Comparable<Source> { class in inherits:Comparable
75 return (o instanceof Source) && name.equals(((Source)o).name);
79 public int compareTo(Source o) {
88 public Source(Module m, String n, File f) { method in class:Source
101 public Source(Package p, String n, long lm) { method in class:Source
151 static public Source load(Package lastPackage, String l, boolean isGenerated) {
164 Source
[all...]
H A DBuildState.java50 private Map<String,Source> sources = new HashMap<>();
57 public Map<String,Source> sources() { return sources; }
105 for (Map.Entry<String,Source> k : p.sources().entrySet()) {
106 Source s = sources.get(k.getKey());
192 public void checkInternalState(String msg, boolean linkedOnly, Map<String,Source> srcs) {
194 Map<String,Source> original = new HashMap<>();
195 Map<String,Source> calculated = new HashMap<>();
198 Source ss = sources.get(s);
204 Source ss = srcs.get(s);
219 Source s
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/DefaultFactoryWrapperTest/xmlwrapperprovider/xwp/
H A DTransformerFactoryWrapper.java27 import javax.xml.transform.Source;
38 public Transformer newTransformer(Source source) throws TransformerConfigurationException {
48 public Templates newTemplates(Source source) throws TransformerConfigurationException {
53 public Source getAssociatedStylesheet(Source source, String media, String title, String charset)
/openjdk10/langtools/test/tools/javac/versions/
H A DSourceTargetTest.java34 import com.sun.tools.javac.code.Source;
48 for (Source s: Source.values()) {
49 test(s, null, "source", getKind(s, Source.MIN));
53 test(Source.values()[0], t, "target", getKind(t, Target.MIN));
60 void test(Source s, Target t, String select, Kind kind) {

Completed in 187 milliseconds

1234567891011>>