From 0210a7c2c053290fdb6945d278c39215d952ad5c Mon Sep 17 00:00:00 2001 From: slaws Date: Fri, 15 Jul 2011 08:46:43 +0000 Subject: TUSCANY-3898 - Apply Guilherme's patch to start adding invoker function to implementation-scala-runtime. Thanks for the patch Guilherme git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1147029 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca/implementation/scala/util/ScalaEngine.java | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 collaboration/GSoC-2011-Guilherme/modules/implementation-scala-runtime/src/main/java/org/apache/tuscany/sca/implementation/scala/util/ScalaEngine.java (limited to 'collaboration/GSoC-2011-Guilherme/modules/implementation-scala-runtime/src/main/java/org/apache/tuscany/sca/implementation/scala/util/ScalaEngine.java') diff --git a/collaboration/GSoC-2011-Guilherme/modules/implementation-scala-runtime/src/main/java/org/apache/tuscany/sca/implementation/scala/util/ScalaEngine.java b/collaboration/GSoC-2011-Guilherme/modules/implementation-scala-runtime/src/main/java/org/apache/tuscany/sca/implementation/scala/util/ScalaEngine.java new file mode 100644 index 0000000000..46f5eb088b --- /dev/null +++ b/collaboration/GSoC-2011-Guilherme/modules/implementation-scala-runtime/src/main/java/org/apache/tuscany/sca/implementation/scala/util/ScalaEngine.java @@ -0,0 +1,41 @@ +/* + * 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 org.apache.tuscany.sca.implementation.scala.util; + +import org.apache.tuscany.sca.implementation.scala.ScalaException; + +public class ScalaEngine { + + private Class scalaClass; + + public ScalaEngine(String className) throws ScalaException { + try { + scalaClass = Class.forName(className); + } catch (ClassNotFoundException e) { + throw new ScalaException(e); + } + } + + public Object invokeFunction(String name, Object[] arguments) { + // TODO Auto-generated method stub + return null; + } + +} \ No newline at end of file -- cgit v1.2.3