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 --- .../calculator-android/res/drawable/icon.png | Bin 0 -> 6094 bytes .../calculator-android/res/layout/main.xml | 12 + .../res/raw/calculator_composite | 49 +++ .../calculator-android/res/raw/sca.xsd | 22 ++ .../calculator-android/res/raw/sca_all.xsd | 32 ++ .../calculator-android/res/raw/sca_binding_ejb.xsd | 43 +++ .../calculator-android/res/raw/sca_binding_jms.xsd | 135 ++++++++ .../calculator-android/res/raw/sca_binding_sca.xsd | 23 ++ .../res/raw/sca_binding_webservice.xsd | 26 ++ .../calculator-android/res/raw/sca_core.xsd | 350 +++++++++++++++++++++ .../calculator-android/res/raw/sca_definitions.xsd | 25 ++ .../res/raw/sca_implementation_bpel.xsd | 43 +++ .../res/raw/sca_implementation_composite_xsd | 23 ++ .../res/raw/sca_implementation_cpp.xsd | 53 ++++ .../res/raw/sca_implementation_ejb.xsd | 25 ++ .../res/raw/sca_implementation_java.xsd | 24 ++ .../res/raw/sca_implementation_spring.xsd | 24 ++ .../res/raw/sca_interface_cpp.xsd | 40 +++ .../res/raw/sca_interface_java.xsd | 23 ++ .../res/raw/sca_interface_wsdl.xsd | 23 ++ .../calculator-android/res/raw/sca_policy.xsd | 76 +++++ .../calculator-android/res/raw/tuscany_sca.xsd | 45 +++ .../res/raw/tuscany_sca_binding_atom.xsd | 40 +++ .../res/raw/tuscany_sca_binding_dwr.xsd | 40 +++ .../res/raw/tuscany_sca_binding_http.xsd | 40 +++ .../res/raw/tuscany_sca_binding_jsonrpc.xsd | 40 +++ .../res/raw/tuscany_sca_binding_notification.xsd | 42 +++ .../res/raw/tuscany_sca_binding_rmi.xsd | 43 +++ .../res/raw/tuscany_sca_binding_rss.xsd | 40 +++ .../res/raw/tuscany_sca_implementation_node.xsd | 42 +++ .../tuscany_sca_implementation_notification.xsd | 42 +++ .../res/raw/tuscany_sca_implementation_osgi.xsd | 43 +++ .../raw/tuscany_sca_implementation_resource.xsd | 42 +++ .../res/raw/tuscany_sca_implementation_script.xsd | 43 +++ .../res/raw/tuscany_sca_implementation_widget.xsd | 42 +++ .../res/raw/tuscany_sca_implementation_xquery.xsd | 42 +++ .../calculator-android/res/values/strings.xml | 4 + 37 files changed, 1701 insertions(+) create mode 100644 sandbox/mobile-android/calculator-android/res/drawable/icon.png create mode 100644 sandbox/mobile-android/calculator-android/res/layout/main.xml create mode 100644 sandbox/mobile-android/calculator-android/res/raw/calculator_composite create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_all.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_binding_ejb.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_binding_jms.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_binding_sca.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_binding_webservice.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_core.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_definitions.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_implementation_bpel.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_implementation_composite_xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_implementation_cpp.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_implementation_ejb.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_implementation_java.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_implementation_spring.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_interface_cpp.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_interface_java.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_interface_wsdl.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/sca_policy.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_atom.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_dwr.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_http.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_jsonrpc.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_notification.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rmi.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rss.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_node.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_notification.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_osgi.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_resource.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_script.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_widget.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_xquery.xsd create mode 100644 sandbox/mobile-android/calculator-android/res/values/strings.xml (limited to 'sandbox/mobile-android/calculator-android/res') diff --git a/sandbox/mobile-android/calculator-android/res/drawable/icon.png b/sandbox/mobile-android/calculator-android/res/drawable/icon.png new file mode 100644 index 0000000000..64e3601c23 Binary files /dev/null and b/sandbox/mobile-android/calculator-android/res/drawable/icon.png differ diff --git a/sandbox/mobile-android/calculator-android/res/layout/main.xml b/sandbox/mobile-android/calculator-android/res/layout/main.xml new file mode 100644 index 0000000000..469c950462 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/layout/main.xml @@ -0,0 +1,12 @@ + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/calculator_composite b/sandbox/mobile-android/calculator-android/res/raw/calculator_composite new file mode 100644 index 0000000000..90872041b0 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/calculator_composite @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca.xsd new file mode 100644 index 0000000000..e108342693 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca.xsd @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_all.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_all.xsd new file mode 100644 index 0000000000..6e3b848a53 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_all.xsd @@ -0,0 +1,32 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_binding_ejb.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_ejb.xsd new file mode 100644 index 0000000000..0e7e40432c --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_ejb.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_binding_jms.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_jms.xsd new file mode 100644 index 0000000000..868a9d64e0 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_jms.xsd @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_binding_sca.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_sca.xsd new file mode 100644 index 0000000000..8005cda8a6 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_sca.xsd @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_binding_webservice.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_webservice.xsd new file mode 100644 index 0000000000..92446c0338 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_binding_webservice.xsd @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_core.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_core.xsd new file mode 100644 index 0000000000..20e0a6901c --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_core.xsd @@ -0,0 +1,350 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_definitions.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_definitions.xsd new file mode 100644 index 0000000000..4676d34eeb --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_definitions.xsd @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_bpel.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_bpel.xsd new file mode 100644 index 0000000000..80141a57af --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_bpel.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_composite_xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_composite_xsd new file mode 100644 index 0000000000..2486653235 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_composite_xsd @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_cpp.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_cpp.xsd new file mode 100644 index 0000000000..1d157d9504 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_cpp.xsd @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_ejb.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_ejb.xsd new file mode 100644 index 0000000000..850b854fd5 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_ejb.xsd @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_java.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_java.xsd new file mode 100644 index 0000000000..792ad407b3 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_java.xsd @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_spring.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_spring.xsd new file mode 100644 index 0000000000..a9ef307bed --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_implementation_spring.xsd @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_interface_cpp.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_interface_cpp.xsd new file mode 100644 index 0000000000..9cae7e3685 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_interface_cpp.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_interface_java.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_interface_java.xsd new file mode 100644 index 0000000000..3f9eb25440 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_interface_java.xsd @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_interface_wsdl.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_interface_wsdl.xsd new file mode 100644 index 0000000000..c161d98f88 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_interface_wsdl.xsd @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/sca_policy.xsd b/sandbox/mobile-android/calculator-android/res/raw/sca_policy.xsd new file mode 100644 index 0000000000..1ae1c9dfdc --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/sca_policy.xsd @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca.xsd new file mode 100644 index 0000000000..33b7c5099b --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca.xsd @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + __> + + + + + + + + + \ No newline at end of file diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_atom.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_atom.xsd new file mode 100644 index 0000000000..1423a7ee87 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_atom.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_dwr.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_dwr.xsd new file mode 100644 index 0000000000..98b17bbb8b --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_dwr.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_http.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_http.xsd new file mode 100644 index 0000000000..4d709353d0 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_http.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_jsonrpc.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_jsonrpc.xsd new file mode 100644 index 0000000000..e03d6feb02 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_jsonrpc.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_notification.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_notification.xsd new file mode 100644 index 0000000000..d1b23e8826 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_notification.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rmi.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rmi.xsd new file mode 100644 index 0000000000..7815e390e4 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rmi.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rss.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rss.xsd new file mode 100644 index 0000000000..8fd10cc781 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_binding_rss.xsd @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_node.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_node.xsd new file mode 100644 index 0000000000..1943c98d70 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_node.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_notification.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_notification.xsd new file mode 100644 index 0000000000..1c4c6d7aeb --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_notification.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_osgi.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_osgi.xsd new file mode 100644 index 0000000000..9fedc2bb84 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_osgi.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_resource.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_resource.xsd new file mode 100644 index 0000000000..e37b2c47ee --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_resource.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_script.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_script.xsd new file mode 100644 index 0000000000..a13643d148 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_script.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_widget.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_widget.xsd new file mode 100644 index 0000000000..1afb30c106 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_widget.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_xquery.xsd b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_xquery.xsd new file mode 100644 index 0000000000..875f0da1dc --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/raw/tuscany_sca_implementation_xquery.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/mobile-android/calculator-android/res/values/strings.xml b/sandbox/mobile-android/calculator-android/res/values/strings.xml new file mode 100644 index 0000000000..91b584c887 --- /dev/null +++ b/sandbox/mobile-android/calculator-android/res/values/strings.xml @@ -0,0 +1,4 @@ + + + Calculator + -- cgit v1.2.3