From 8751ca0a45b9343f37161c9f762fb4c485944a5f Mon Sep 17 00:00:00 2001 From: beckerdo Date: Sun, 1 Feb 2009 20:45:55 +0000 Subject: TUSCANY-2485 Add JavaDocs for Tuscany 1.4 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@739833 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/xml/JavaImplementationConstants.html | 245 +++++++++++++ .../java/xml/JavaImplementationProcessor.html | 401 +++++++++++++++++++++ .../sca/implementation/java/xml/package-frame.html | 43 +++ .../implementation/java/xml/package-summary.html | 169 +++++++++ .../sca/implementation/java/xml/package-tree.html | 157 ++++++++ 5 files changed, 1015 insertions(+) create mode 100644 site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationConstants.html create mode 100644 site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationProcessor.html create mode 100644 site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-frame.html create mode 100644 site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-summary.html create mode 100644 site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-tree.html (limited to 'site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml') diff --git a/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationConstants.html b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationConstants.html new file mode 100644 index 0000000000..5eb198f64b --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationConstants.html @@ -0,0 +1,245 @@ + + + + + + +JavaImplementationConstants + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.implementation.java.xml +
+Interface JavaImplementationConstants

+
+
All Known Implementing Classes:
JavaImplementationProcessor
+
+
+
+
public interface JavaImplementationConstants
+ + +

+Constants for the Java Implementation. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + +
+Field Summary
+static java.lang.StringCLASS + +
+           
+static java.lang.StringIMPLEMENTATION_JAVA + +
+           
+static javax.xml.namespace.QNameIMPLEMENTATION_JAVA_QNAME + +
+           
+  +

+ + + + + + + + +
+Field Detail
+ +

+IMPLEMENTATION_JAVA

+
+static final java.lang.String IMPLEMENTATION_JAVA
+
+
+
See Also:
Constant Field Values
+
+
+ +

+IMPLEMENTATION_JAVA_QNAME

+
+static final javax.xml.namespace.QName IMPLEMENTATION_JAVA_QNAME
+
+
+
+
+
+ +

+CLASS

+
+static final java.lang.String CLASS
+
+
+
See Also:
Constant Field Values
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationProcessor.html b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationProcessor.html new file mode 100644 index 0000000000..623446128c --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/JavaImplementationProcessor.html @@ -0,0 +1,401 @@ + + + + + + +JavaImplementationProcessor + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.implementation.java.xml +
+Class JavaImplementationProcessor

+
+java.lang.Object
+  extended by org.apache.tuscany.sca.implementation.java.xml.JavaImplementationProcessor
+
+
+
All Implemented Interfaces:
ArtifactProcessor<JavaImplementation>, StAXArtifactProcessor<JavaImplementation>, JavaImplementationConstants
+
+
+
+
public class JavaImplementationProcessor
extends java.lang.Object
implements StAXArtifactProcessor<JavaImplementation>, JavaImplementationConstants
+ + +

+


+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface org.apache.tuscany.sca.implementation.java.xml.JavaImplementationConstants
CLASS, IMPLEMENTATION_JAVA, IMPLEMENTATION_JAVA_QNAME
+  + + + + + + + + + + +
+Constructor Summary
JavaImplementationProcessor(ModelFactoryExtensionPoint modelFactories, + Monitor monitor) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ javax.xml.namespace.QNamegetArtifactType() + +
+          Returns the type of artifact handled by this artifact processor.
+ java.lang.Class<JavaImplementation>getModelType() + +
+          Returns the type of model handled by this artifact processor.
+ JavaImplementationread(javax.xml.stream.XMLStreamReader reader) + +
+          Reads a model from an XMLStreamReader.
+ voidresolve(JavaImplementation javaImplementation, + ModelResolver resolver) + +
+          Resolve references from this model to other models.
+ voidwrite(JavaImplementation javaImplementation, + javax.xml.stream.XMLStreamWriter writer) + +
+          Writes a model to an XMLStreamWriter.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+JavaImplementationProcessor

+
+public JavaImplementationProcessor(ModelFactoryExtensionPoint modelFactories,
+                                   Monitor monitor)
+
+
+ + + + + + + + +
+Method Detail
+ +

+read

+
+public JavaImplementation read(javax.xml.stream.XMLStreamReader reader)
+                        throws ContributionReadException,
+                               javax.xml.stream.XMLStreamException
+
+
Description copied from interface: StAXArtifactProcessor
+
Reads a model from an XMLStreamReader. +

+

+
Specified by:
read in interface StAXArtifactProcessor<JavaImplementation>
+
+
+
Parameters:
reader - The XMLStreamReader +
Returns:
A model representation of the input. +
Throws: +
ContributionReadException +
javax.xml.stream.XMLStreamException
+
+
+
+ +

+write

+
+public void write(JavaImplementation javaImplementation,
+                  javax.xml.stream.XMLStreamWriter writer)
+           throws ContributionWriteException,
+                  javax.xml.stream.XMLStreamException
+
+
Description copied from interface: StAXArtifactProcessor
+
Writes a model to an XMLStreamWriter. +

+

+
Specified by:
write in interface StAXArtifactProcessor<JavaImplementation>
+
+
+
Parameters:
javaImplementation - A model representing the source
writer - The XML stream writer +
Throws: +
ContributionWriteException +
javax.xml.stream.XMLStreamException
+
+
+
+ +

+resolve

+
+public void resolve(JavaImplementation javaImplementation,
+                    ModelResolver resolver)
+             throws ContributionResolveException
+
+
Description copied from interface: ArtifactProcessor
+
Resolve references from this model to other models. For example references + from a composite to another one, or references from a composite to a WSDL + model. +

+

+
Specified by:
resolve in interface ArtifactProcessor<JavaImplementation>
+
+
+
Parameters:
javaImplementation - The model to resolve
resolver - The resolver to use to resolve referenced models +
Throws: +
ContributionResolveException
+
+
+
+ +

+getArtifactType

+
+public javax.xml.namespace.QName getArtifactType()
+
+
Description copied from interface: StAXArtifactProcessor
+
Returns the type of artifact handled by this artifact processor. +

+

+
Specified by:
getArtifactType in interface StAXArtifactProcessor<JavaImplementation>
+
+
+ +
Returns:
The type of artifact handled by this artifact processor
+
+
+
+ +

+getModelType

+
+public java.lang.Class<JavaImplementation> getModelType()
+
+
Description copied from interface: ArtifactProcessor
+
Returns the type of model handled by this artifact processor. +

+

+
Specified by:
getModelType in interface ArtifactProcessor<JavaImplementation>
+
+
+ +
Returns:
The type of model handled by this artifact processor
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-frame.html b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-frame.html new file mode 100644 index 0000000000..5ed1764470 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-frame.html @@ -0,0 +1,43 @@ + + + + + + +org.apache.tuscany.sca.implementation.java.xml + + + + + + + + + + + +org.apache.tuscany.sca.implementation.java.xml + + + + +
+Interfaces  + +
+JavaImplementationConstants
+ + + + + + +
+Classes  + +
+JavaImplementationProcessor
+ + + + diff --git a/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-summary.html b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-summary.html new file mode 100644 index 0000000000..a16a4272c3 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-summary.html @@ -0,0 +1,169 @@ + + + + + + +org.apache.tuscany.sca.implementation.java.xml + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package org.apache.tuscany.sca.implementation.java.xml +

+ + + + + + + + + +
+Interface Summary
JavaImplementationConstantsConstants for the Java Implementation.
+  + +

+ + + + + + + + + +
+Class Summary
JavaImplementationProcessor 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-tree.html b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-tree.html new file mode 100644 index 0000000000..bd8a3716a3 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/implementation/java/xml/package-tree.html @@ -0,0 +1,157 @@ + + + + + + +org.apache.tuscany.sca.implementation.java.xml Class Hierarchy + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package org.apache.tuscany.sca.implementation.java.xml +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3