Skip to content
Snippets Groups Projects
Commit a7ffcebc authored by dgelessus's avatar dgelessus
Browse files

Move de.bmotionstudio.rodin classes to appropriate packages

parent ebe6742e
No related branches found
No related tags found
No related merge requests found
Pipeline #138771 passed
Showing
with 21 additions and 19 deletions
......@@ -13,13 +13,13 @@
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="de.bmotionstudio.rodin.PerspectiveEditFactory"
class="de.bmotionstudio.gef.editor.internal.PerspectiveEditFactory"
icon="icons/logo_bmotion.png"
id="de.bmotionstudio.perspective.edit"
name="BMS Edit">
</perspective>
<perspective
class="de.bmotionstudio.rodin.PerspectiveRunFactory"
class="de.bmotionstudio.gef.editor.internal.PerspectiveRunFactory"
icon="icons/icon_run.png"
id="de.bmotionstudio.perspective.run"
name="BMS Run">
......@@ -122,7 +122,7 @@
<iterate
operator="or">
<instanceof
value="de.bmotionstudio.rodin.BMotionStudioRodinFile">
value="de.bmotionstudio.gef.editor.internal.BMotionStudioRodinFile">
</instanceof>
</iterate>
</with>
......@@ -142,7 +142,7 @@
name="Start Visualization from File">
</command>
<command
defaultHandler="de.bmotionstudio.rodin.StartEventBVisualizationHandler"
defaultHandler="de.bmotionstudio.gef.editor.handler.StartEventBVisualizationHandler"
id="de.bmotionstudio.rodin.command.startVisualization"
name="Start Visualization">
</command>
......@@ -165,9 +165,9 @@
<extension
point="org.eclipse.ui.navigator.navigatorContent">
<navigatorContent
contentProvider="de.bmotionstudio.rodin.BMotionStudioContentProvider"
contentProvider="de.bmotionstudio.gef.editor.internal.BMotionStudioContentProvider"
id="de.bmotionstudio.ui.navigatorContent"
labelProvider="de.bmotionstudio.rodin.BMotionLabelProvider"
labelProvider="de.bmotionstudio.gef.editor.internal.BMotionLabelProvider"
name="BMotion Studio Navigator Content"
priority="normal">
<triggerPoints>
......@@ -177,15 +177,15 @@
</triggerPoints>
<possibleChildren>
<instanceof
value="de.bmotionstudio.rodin.BMotionStudioRodinFile">
value="de.bmotionstudio.gef.editor.internal.BMotionStudioRodinFile">
</instanceof>
</possibleChildren>
<actionProvider
class="de.bmotionstudio.rodin.BMotionStudioActionProvider"
class="de.bmotionstudio.gef.editor.action.BMotionStudioActionProvider"
id="de.bmotionstudio.ui.navigatorAction"
priority="normal">
<enablement>
<instanceof value="de.bmotionstudio.rodin.BMotionStudioRodinFile">
<instanceof value="de.bmotionstudio.gef.editor.internal.BMotionStudioRodinFile">
</instanceof>
</enablement>
</actionProvider>
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.action;
import java.util.ArrayList;
import java.util.Collection;
......@@ -30,6 +30,7 @@ import org.eclipse.ui.navigator.ICommonActionExtensionSite;
import org.eclipse.ui.part.FileEditorInput;
import de.bmotionstudio.gef.editor.BMotionEditorPlugin;
import de.bmotionstudio.gef.editor.internal.BMotionStudioRodinFile;
public class ActionCollection {
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.action;
import org.eclipse.jface.action.GroupMarker;
import org.eclipse.jface.action.IMenuManager;
......@@ -20,6 +20,7 @@ import org.eclipse.ui.navigator.ICommonActionExtensionSite;
import org.eclipse.ui.navigator.ICommonMenuConstants;
import de.bmotionstudio.gef.editor.BMotionEditorPlugin;
import de.bmotionstudio.gef.editor.internal.BMotionStudioRodinFile;
public class BMotionStudioActionProvider extends CommonActionProvider {
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.action;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.MessageDialog;
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.handler;
import org.eclipse.core.commands.IHandler;
import org.eclipse.core.resources.IFile;
......@@ -15,7 +15,7 @@ import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.jface.viewers.IStructuredSelection;
import de.bmotionstudio.gef.editor.handler.StartVisualizationFileHandler;
import de.bmotionstudio.gef.editor.internal.BMotionStudioRodinFile;
/**
* @author Lukas Ladenberger
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.internal;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.ILabelProviderListener;
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.internal;
import java.util.ArrayList;
import java.util.List;
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.internal;
import org.eclipse.core.resources.IResource;
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.internal;
import org.eclipse.ui.IFolderLayout;
import org.eclipse.ui.IPageLayout;
......
......@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */
package de.bmotionstudio.rodin;
package de.bmotionstudio.gef.editor.internal;
import org.eclipse.ui.IFolderLayout;
import org.eclipse.ui.IPageLayout;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment