summaryrefslogtreecommitdiffstats
path: root/sandbox/slaws/runtimecompat/2xlauncher/src/main/java/calculator/CalculatorService.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-11-20 12:10:03 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-11-20 12:10:03 +0000
commit558e99c8ae4efb7815f4b8b7c4d922e06e863c76 (patch)
treeb46a2df339b5bd3b320716cb52b3cf2c40da10a4 /sandbox/slaws/runtimecompat/2xlauncher/src/main/java/calculator/CalculatorService.java
parent2335e867fb77658cfd4d7d4ae999768863df533c (diff)
Bring up 1.x and 2.x together.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@882529 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/slaws/runtimecompat/2xlauncher/src/main/java/calculator/CalculatorService.java')
-rw-r--r--sandbox/slaws/runtimecompat/2xlauncher/src/main/java/calculator/CalculatorService.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/sandbox/slaws/runtimecompat/2xlauncher/src/main/java/calculator/CalculatorService.java b/sandbox/slaws/runtimecompat/2xlauncher/src/main/java/calculator/CalculatorService.java
new file mode 100644
index 0000000000..031fa8b912
--- /dev/null
+++ b/sandbox/slaws/runtimecompat/2xlauncher/src/main/java/calculator/CalculatorService.java
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package calculator;
+
+
+/**
+ * The Calculator service interface.
+ */
+public interface CalculatorService {
+
+ double add(double n1, double n2);
+
+ double subtract(double n1, double n2);
+
+ double multiply(double n1, double n2);
+
+ double divide(double n1, double n2);
+
+}