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

12345678

/openjdk7/jaxp/src/javax/xml/transform/
H A DSource.java32 public interface Source { interface
35 * Set the system identifier for this Source.
H A DURIResolver.java30 * to turn a URI used in document(), xsl:import, or xsl:include into a Source object.
42 * @return A Source object, or null if the href cannot be resolved,
48 public Source resolve(String href, String base)
H A DTransformerFactory.java160 * <p>Process the <code>Source</code> into a <code>Transformer</code>
161 * <code>Object</code>. The <code>Source</code> is an XSLT document that
169 * @param source <code>Source </code> of XSLT document used to create
171 * Examples of XML <code>Source</code>s include
181 * parsing the <code>Source</code> or it is not possible to create a
187 public abstract Transformer newTransformer(Source source)
192 * of the <code>Source</code> to the <code>Result</code>.
205 * Process the Source into a Templates object, which is a
220 public abstract Templates newTemplates(Source source)
225 * XML <code>Source</cod
[all...]
/openjdk7/jaxws/src/share/jaxws_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();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DLogicalMessage.java28 import javax.xml.transform.Source;
41 * returns a new <code>Source</code> that may be used to retrieve the entire
44 * <p>If the returned <code>Source</code> is an instance of
48 * <code>setPayload</code>. Other types of <code>Source</code> provide only
54 public Source getPayload();
64 public void setPayload(Source payload);
H A DEndpointReference.java30 import javax.xml.transform.Source;
108 public static EndpointReference readFrom(Source eprInfoset) {
/openjdk7/jaxws/src/share/jaxws_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)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHelper.java26 import javax.xml.transform.Source;
38 public void validate(Source source, Result result)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DEnvelope.java32 import javax.xml.transform.Source;
42 * Get the content as a JAXP Source.
44 Source getContent();
H A DXmlDataContentHandler.java33 import javax.xml.transform.Source;
111 transformer.transform((Source) getContent((DataSource)obj), result);
113 Source src=null;
117 src=(Source) obj;
/openjdk7/jaxws/src/share/jaxws_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 );
/openjdk7/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);
/openjdk7/langtools/src/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");
70 private static final Context.Key<Source> sourceKey
71 = new Context.Key<Source>();
73 public static Source instance(Context context) {
74 Source instance = context.get(sourceKey);
87 private static Map<String,Source> ta
97 private Source(String name) { method in class:Source
[all...]
/openjdk7/jaxp/src/javax/xml/transform/dom/
H A DDOMSource.java28 import javax.xml.transform.Source;
33 * <p>Acts as a holder for a transformation Source tree in the
44 public class DOMSource implements Source {
59 * the Transformer supports Source input of this type.
71 * @see javax.xml.transform.Transformer#transform(Source xmlSource, Result outputTarget)
82 * @param n The DOM node that will contain the Source tree.
92 * @param node The DOM node that will contain the Source tree.
101 * Set the node that will represents a Source DOM tree.
110 * Get the node that represents a Source DOM tree.
/openjdk7/jaxp/src/javax/xml/transform/sax/
H A DSAXTransformerFactory.java56 * the {@link #newXMLFilter(Source src)}
72 * @param src The Source of the transformation instructions.
79 public abstract TransformerHandler newTransformerHandler(Source src)
125 * Create an XMLFilter that uses the given Source as the
128 * @param src The Source of the transformation instructions.
135 public abstract XMLFilter newXMLFilter(Source src)
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DSource.java39 public class Source { class
44 public Source() { method in class:Source
76 public Source getSource();
84 public void addSourceNodes(Source s) {
H A DConnection.java37 public class Connection implements Source.Provider, Link {
47 private Source source;
62 source = new Source();
92 public Source getSource() {
H A DSlot.java37 public abstract class Slot implements Port, Source.Provider {
42 private Source source;
49 source = new Source();
72 public Source getSource() {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLInputSourceAdaptor.java63 import javax.xml.transform.Source;
70 * {@link Source} that represents an {@link XMLInputSource}.
74 * derive from {@link Source}, but the way
76 * different from the way {@link Source#getSystemId()} method works.
85 public final class XMLInputSourceAdaptor implements Source {
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLXML.java34 import javax.xml.transform.Source;
47 * may also be accessed through a Source or set as a Result, which
122 * Source source = sqlxml.getSource(null);
138 * Source streamSource = new StreamSource(sourceFile);
142 * Any Source can be transformed to a Result using the identity transform
146 * Source source = sqlxml.getSource(null);
151 * To write the contents of a Source to standard output:
154 * Source source = sqlxml.getSource(null);
343 * Returns a Source for reading the XML value designated by this SQLXML instance.
347 * The systemID of the Source i
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DAttachment.java33 import javax.xml.transform.Source;
68 * Gets the attachment as a {@link Source}.
71 Source asSource();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A Dpackage-info.java108 * logical handler sets payload as Source. To write to the stream,
110 * updated with logical handler' Source. Need to verify if this
128 * <LI><P>{@link javax.xml.bind.Unmarshaller#unmarshal(Source) Object Unmarshaller.unmarshal(Source)}</P>
153 import javax.xml.transform.Source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A Dpackage-info.java99 * logical handler sets payload as Source. To write to the stream,
101 * updated with logical handler' Source. Need to verify if this
119 * <LI><P>{@link javax.xml.bind.Unmarshaller#unmarshal(Source) Object Unmarshaller.unmarshal(Source)}</P>
145 import javax.xml.transform.Source;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DJAXPValidationMessages_sv.properties42 SchemaSourceArrayNull = Parametern f\u00F6r Source-uppst\u00E4llning f\u00E5r inte vara null.
43 SchemaSourceArrayMemberNull = Parametern f\u00F6r Source-uppst\u00E4llning f\u00E5r inte inneh\u00E5lla n\u00E5gra objekt som \u00E4r null.
44 SchemaFactorySourceUnrecognized = Source-parametrar av typ ''{0}'' identifieras inte av SchemaFactory.
47 SourceParameterNull = Source-parameter f\u00E5r inte vara null.
48 SourceNotAccepted = Source-parametrar av typ ''{0}'' accepteras inte av valideraren.
49 SourceResultMismatch = Source-parametrar av typ ''{0}'' \u00E4r inte kompatibla med resultatparametrar av typ ''{1}''.
H A DJAXPValidationMessages_zh_CN.properties42 SchemaSourceArrayNull = Source \u6570\u7EC4\u53C2\u6570\u4E0D\u80FD\u4E3A\u7A7A\u503C\u3002
43 SchemaSourceArrayMemberNull = Source \u6570\u7EC4\u53C2\u6570\u4E0D\u80FD\u5305\u542B\u4EFB\u4F55\u4E3A\u7A7A\u503C\u7684\u9879\u3002
44 SchemaFactorySourceUnrecognized = \u6B64 SchemaFactory \u65E0\u6CD5\u8BC6\u522B\u7C7B\u578B\u4E3A ''{0}'' \u7684 Source \u53C2\u6570\u3002
47 SourceParameterNull = Source \u53C2\u6570\u4E0D\u80FD\u4E3A\u7A7A\u503C\u3002
48 SourceNotAccepted = \u6B64\u9A8C\u8BC1\u7A0B\u5E8F\u4E0D\u63A5\u53D7\u7C7B\u578B\u4E3A ''{0}'' \u7684 Source \u53C2\u6570\u3002
49 SourceResultMismatch = \u7C7B\u578B\u4E3A ''{0}'' \u7684 Source \u53C2\u6570\u4E0E\u7C7B\u578B\u4E3A ''{1}'' \u7684\u7ED3\u679C\u53C2\u6570\u4E0D\u517C\u5BB9\u3002

Completed in 260 milliseconds

12345678