diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-12 00:43:48 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-12 00:43:48 +0000 |
commit | 9425990f532b1152c2d73db96c0f07ef5216a3d1 (patch) | |
tree | a8986fc31f96eb02484a0ae9d1c14cfa788e30ac /sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache | |
parent | 40523f9c6cb1f7a785c2dbd2466dc410ae6ddf66 (diff) |
Moving 2.x contribs
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache')
2 files changed, 77 insertions, 0 deletions
diff --git a/sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache/tuscany/sca/plugin/process/classpath/ProcessClasspathContainer.java b/sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache/tuscany/sca/plugin/process/classpath/ProcessClasspathContainer.java new file mode 100644 index 0000000000..225fa67b58 --- /dev/null +++ b/sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache/tuscany/sca/plugin/process/classpath/ProcessClasspathContainer.java @@ -0,0 +1,39 @@ +/* + * 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.plugin.process.classpath; + +import org.apache.tuscany.sca.plugin.core.classpath.BaseClasspathContainer; +import org.apache.tuscany.sca.plugin.core.classpath.RuntimeClasspathContainer; + + +/** + * A classpath container for the core runtime. + * + * @version $Rev$ $Date$ + */ +public class ProcessClasspathContainer extends BaseClasspathContainer implements RuntimeClasspathContainer { + + public ProcessClasspathContainer() { + super("org.apache.tuscany.sca.plugin.process", + "org.apache.tuscany.sca.plugin.process.runtime.library", "Tuscany SCA Process Library", + "tuscany-sca", "tuscany-distribution-process", "1.4-EQUINOX-SNAPSHOT", + "TUSCANY_HOME", "TUSCANY_SRC"); + } +} diff --git a/sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache/tuscany/sca/plugin/process/classpath/ProcessClasspathContainerInitializer.java b/sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache/tuscany/sca/plugin/process/classpath/ProcessClasspathContainerInitializer.java new file mode 100644 index 0000000000..dab0eeaadc --- /dev/null +++ b/sca-java-2.x/contrib/tools/eclipse/plugins/process/org/apache/tuscany/sca/plugin/process/classpath/ProcessClasspathContainerInitializer.java @@ -0,0 +1,38 @@ +/* + * 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.plugin.process.classpath; + +import org.apache.tuscany.sca.plugin.core.classpath.BaseClasspathContainerInitializer; +import org.apache.tuscany.sca.plugin.core.classpath.RuntimeClasspathContainerInitializer; +import org.apache.tuscany.sca.plugin.process.classpath.ProcessClasspathContainer; + + +/** + * A classpath container initializer for the core runtime. + * + * @version $Rev$ $Date$ + */ +public class ProcessClasspathContainerInitializer extends BaseClasspathContainerInitializer implements RuntimeClasspathContainerInitializer { + + public ProcessClasspathContainerInitializer() { + super(new ProcessClasspathContainer()); + } + +} |