Skip to content
Snippets Groups Projects
Commit 0dcb235c authored by Johannes Eder's avatar Johannes Eder
Browse files

moved classes to correct package


Signed-off-by: default avatarJohannes Eder <eder@fortiss.org>
parent 1d637307
Branches preinstalled-libs
No related tags found
No related merge requests found
eclipse.preferences.version=1
encoding//html/external_tools.html=UTF-8
encoding//model/conti.ecorediag=UTF-8
encoding//src/org/fortiss/af3/platform/raspberry/ui/AF3PlatformModelsConferencUIActivator.java=UTF-8
encoding//uml/exploration.ecorediag=UTF-8
encoding/<project>=US-ASCII
......@@ -14,7 +14,7 @@
provider="org.fortiss.af3.platform.raspberry.ui.prototype.ProtoypeProvider">
</modelPrototypeProvider>
<modelPrototypeProvider
provider="org.fortiss.af3.platform.raspberry.ui.MCBProtoypeProvider">
provider="org.fortiss.af3.platform.raspberry.ui.prototype.MCBProtoypeProvider">
</modelPrototypeProvider>
</extension>
<extension
......@@ -406,7 +406,7 @@
modelElementClass="org.fortiss.af3.platform.raspberry.model.camera.CameraRoverID"/>
</modelElementHandler>
<modelElementHandler
handler="org.fortiss.af3.platform.raspberry.ui.MCBElementsHandler">
handler="org.fortiss.af3.platform.raspberry.ui.prototype.MCBElementsHandler">
<modelElementClass
modelElementClass="org.fortiss.af3.platform.raspberry.model.modelsconference.Button"/>
<modelElementClass
......
/*-------------------------------------------------------------------------+
| Copyright 2018 fortiss GmbH |
| |
| Licensed 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.fortiss.af3.platform.raspberry.ui;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/** The activator class controls the plug-in life cycle. */
public final class AF3PlatformModelsConferencUIActivator extends AbstractUIPlugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = AF3PlatformModelsConferencUIActivator.class.getPackage()
.getName(); //$NON-NLS-1$
/** The shared instance. */
private static AF3PlatformModelsConferencUIActivator plugin;
/** Constructor. */
public AF3PlatformModelsConferencUIActivator() {
// do nothing
}
/** {@inheritDoc} */
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
/** {@inheritDoc} */
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/** Returns the shared instance. */
public static AF3PlatformModelsConferencUIActivator getDefault() {
return plugin;
}
/** Returns the image descriptor for the given icon file. */
public static ImageDescriptor getImageDescriptor(String path) {
return imageDescriptorFromPlugin(PLUGIN_ID, path);
}
}
\ No newline at end of file
......@@ -13,7 +13,7 @@
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.af3.platform.raspberry.ui;
package org.fortiss.af3.platform.raspberry.ui.editpart;
import org.eclipse.gef.EditPart;
import org.fortiss.af3.platform.model.PlatformConnectorUnit;
......
......@@ -15,7 +15,7 @@
+--------------------------------------------------------------------------*/
package org.fortiss.af3.platform.raspberry.ui.generator;
import static org.fortiss.af3.platform.raspberry.ui.AF3PlatformModelsConferencUIActivator.getDefault;
import static org.fortiss.af3.platform.raspberry.ui.AF3PlatformRaspberryUIActivator.getDefault;
import static org.fortiss.tooling.kernel.utils.LoggingUtils.error;
import java.io.IOException;
......@@ -47,7 +47,7 @@ public class SSHBareMetalGeneratorExecutionTarget extends BareMetalGeneratorExec
@Override
public void run() {
// TODO (SB: unused)
Process p;
Process p = null;
int retCode = -1;
try {
......
......@@ -13,7 +13,7 @@
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.af3.platform.raspberry.ui;
package org.fortiss.af3.platform.raspberry.ui.prototype;
import org.fortiss.af3.platform.raspberry.ui.handler.IconModelElementHandlerBase;
import org.fortiss.tooling.kernel.model.INamedCommentedElement;
......
......@@ -13,7 +13,7 @@
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.af3.platform.raspberry.ui;
package org.fortiss.af3.platform.raspberry.ui.prototype;
import static org.fortiss.af3.platform.raspberry.modelsconference.ModelsConferencePlatformElementFactory.createDemonstratorBoard;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment