From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/das/rdb/config/util/ConfigSwitch.html | 627 +++++++++++++++++++++ 1 file changed, 627 insertions(+) create mode 100644 branches/site-20060730-mvnbased/src/site/resources/javadoc/tuscany-das-rdb/org/apache/tuscany/das/rdb/config/util/ConfigSwitch.html (limited to 'branches/site-20060730-mvnbased/src/site/resources/javadoc/tuscany-das-rdb/org/apache/tuscany/das/rdb/config/util/ConfigSwitch.html') diff --git a/branches/site-20060730-mvnbased/src/site/resources/javadoc/tuscany-das-rdb/org/apache/tuscany/das/rdb/config/util/ConfigSwitch.html b/branches/site-20060730-mvnbased/src/site/resources/javadoc/tuscany-das-rdb/org/apache/tuscany/das/rdb/config/util/ConfigSwitch.html new file mode 100644 index 0000000000..e9fdff0526 --- /dev/null +++ b/branches/site-20060730-mvnbased/src/site/resources/javadoc/tuscany-das-rdb/org/apache/tuscany/das/rdb/config/util/ConfigSwitch.html @@ -0,0 +1,627 @@ + + + + + + + +ConfigSwitch (Tuscany DAS for Relational Databases incubating-M1 API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Tuscany DAS for Relational Databases +
+ + + +
+ +

+ +org.apache.tuscany.das.rdb.config.util +
+Class ConfigSwitch

+
+java.lang.Object
+  extended by org.apache.tuscany.das.rdb.config.util.ConfigSwitch
+
+
+
+
public class ConfigSwitch
extends java.lang.Object
+ + +

+ + The Switch for the model's inheritance hierarchy. + It supports the call doSwitch(object) + to invoke the caseXXX method for each class of the model, + starting with the actual class of the object + and proceeding up the inheritance hierarchy + until a non-null result is returned, + which is the result of the switch. + +

+ +

+

+
See Also:
ConfigPackageImpl
+
+ +

+ + + + + + + + + + + +
+Field Summary
+protected static ConfigPackageImplmodelPackage + +
+          The cached model package + +
+  + + + + + + + + + + +
+Constructor Summary
ConfigSwitch() + +
+          Creates an instance of the switch.
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ java.lang.ObjectcaseColumn(Column object) + +
+          Returns the result of interpretting the object as an instance of 'Column'.
+ java.lang.ObjectcaseCommand(Command object) + +
+          Returns the result of interpretting the object as an instance of 'Command'.
+ java.lang.ObjectcaseConfig(Config object) + +
+          Returns the result of interpretting the object as an instance of 'Config'.
+ java.lang.ObjectcaseConnectionProperties(ConnectionProperties object) + +
+          Returns the result of interpretting the object as an instance of 'Connection Properties'.
+ java.lang.ObjectcaseKeyPair(KeyPair object) + +
+          Returns the result of interpretting the object as an instance of 'Key Pair'.
+ java.lang.ObjectcaseParameter(Parameter object) + +
+          Returns the result of interpretting the object as an instance of 'Parameter'.
+ java.lang.ObjectcaseRelationship(Relationship object) + +
+          Returns the result of interpretting the object as an instance of 'Relationship'.
+ java.lang.ObjectcaseResultDescriptor(ResultDescriptor object) + +
+          Returns the result of interpretting the object as an instance of 'Result Descriptor'.
+ java.lang.ObjectcaseTable(Table object) + +
+          Returns the result of interpretting the object as an instance of 'Table'.
+ java.lang.ObjectdefaultCase(org.eclipse.emf.ecore.EObject object) + +
+          Returns the result of interpretting the object as an instance of 'EObject'.
+protected  java.lang.ObjectdoSwitch(org.eclipse.emf.ecore.EClass theEClass, + org.eclipse.emf.ecore.EObject theEObject) + +
+          Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
+ java.lang.ObjectdoSwitch(org.eclipse.emf.ecore.EObject theEObject) + +
+          Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
+protected  java.lang.ObjectdoSwitch(int classifierID, + org.eclipse.emf.ecore.EObject theEObject) + +
+          Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

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

+modelPackage

+
+protected static ConfigPackageImpl modelPackage
+
+
The cached model package + + +

+

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

+ConfigSwitch

+
+public ConfigSwitch()
+
+
Creates an instance of the switch. + + +

+

+ + + + + + + + +
+Method Detail
+ +

+doSwitch

+
+public java.lang.Object doSwitch(org.eclipse.emf.ecore.EObject theEObject)
+
+
Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + + +

+

+ +
Returns:
the first non-null result returned by a caseXXX call.
+
+
+
+ +

+doSwitch

+
+protected java.lang.Object doSwitch(org.eclipse.emf.ecore.EClass theEClass,
+                                    org.eclipse.emf.ecore.EObject theEObject)
+
+
Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + + +

+

+ +
Returns:
the first non-null result returned by a caseXXX call.
+
+
+
+ +

+doSwitch

+
+protected java.lang.Object doSwitch(int classifierID,
+                                    org.eclipse.emf.ecore.EObject theEObject)
+
+
Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + + +

+

+ +
Returns:
the first non-null result returned by a caseXXX call.
+
+
+
+ +

+caseColumn

+
+public java.lang.Object caseColumn(Column object)
+
+
Returns the result of interpretting the object as an instance of 'Column'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Column'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseCommand

+
+public java.lang.Object caseCommand(Command object)
+
+
Returns the result of interpretting the object as an instance of 'Command'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Command'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseConfig

+
+public java.lang.Object caseConfig(Config object)
+
+
Returns the result of interpretting the object as an instance of 'Config'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Config'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseConnectionProperties

+
+public java.lang.Object caseConnectionProperties(ConnectionProperties object)
+
+
Returns the result of interpretting the object as an instance of 'Connection Properties'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Connection Properties'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseKeyPair

+
+public java.lang.Object caseKeyPair(KeyPair object)
+
+
Returns the result of interpretting the object as an instance of 'Key Pair'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Key Pair'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseParameter

+
+public java.lang.Object caseParameter(Parameter object)
+
+
Returns the result of interpretting the object as an instance of 'Parameter'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Parameter'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseRelationship

+
+public java.lang.Object caseRelationship(Relationship object)
+
+
Returns the result of interpretting the object as an instance of 'Relationship'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Relationship'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseResultDescriptor

+
+public java.lang.Object caseResultDescriptor(ResultDescriptor object)
+
+
Returns the result of interpretting the object as an instance of 'Result Descriptor'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Result Descriptor'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+caseTable

+
+public java.lang.Object caseTable(Table object)
+
+
Returns the result of interpretting the object as an instance of 'Table'. + + This implementation returns null; + returning a non-null result will terminate the switch. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'Table'.
See Also:
doSwitch(EObject)
+
+
+
+ +

+defaultCase

+
+public java.lang.Object defaultCase(org.eclipse.emf.ecore.EObject object)
+
+
Returns the result of interpretting the object as an instance of 'EObject'. + + This implementation returns null; + returning a non-null result will terminate the switch, but this is the last case anyway. + +

+

+
Parameters:
object - the target of the switch. +
Returns:
the result of interpretting the object as an instance of 'EObject'.
See Also:
doSwitch(org.eclipse.emf.ecore.EObject)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+Tuscany DAS for Relational Databases +
+ + + +
+- + + -- cgit v1.2.3