Skip to content
Snippets Groups Projects
Commit cd4dc102 authored by Florian Hölzl's avatar Florian Hölzl
Browse files

fixed package name to match plugin

parent 47b69263
No related branches found
No related tags found
No related merge requests found
Showing
with 43 additions and 43 deletions
......@@ -3,22 +3,22 @@ Bundle-ManifestVersion: 2
Bundle-Name: Fortiss Tooling Kernel Base User Interface
Bundle-SymbolicName: org.fortiss.tooling.base.ui;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.fortiss.tooling.kernel.base.ui.ToolingBaseUIActivator
Bundle-Activator: org.fortiss.tooling.base.ui.ToolingBaseUIActivator
Require-Bundle: org.fortiss.tooling.base;bundle-version="1.0.0";visibility:=reexport,
org.fortiss.tooling.kernel.ui;bundle-version="1.0.0";visibility:=reexport
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-Vendor: fortiss
Export-Package: org.fortiss.tooling.kernel.base.ui,
org.fortiss.tooling.kernel.base.ui.action,
org.fortiss.tooling.kernel.base.ui.command,
org.fortiss.tooling.kernel.base.ui.dnd,
org.fortiss.tooling.kernel.base.ui.editor,
org.fortiss.tooling.kernel.base.ui.editor.gef,
org.fortiss.tooling.kernel.base.ui.editpart,
org.fortiss.tooling.kernel.base.ui.editpart.anchor,
org.fortiss.tooling.kernel.base.ui.editpart.figure,
org.fortiss.tooling.kernel.base.ui.editpart.policy,
org.fortiss.tooling.kernel.base.ui.layout,
org.fortiss.tooling.kernel.base.ui.layout.constants,
org.fortiss.tooling.kernel.base.ui.layout.util
Export-Package: org.fortiss.tooling.base.ui,
org.fortiss.tooling.base.ui.action,
org.fortiss.tooling.base.ui.command,
org.fortiss.tooling.base.ui.dnd,
org.fortiss.tooling.base.ui.editor,
org.fortiss.tooling.base.ui.editor.gef,
org.fortiss.tooling.base.ui.editpart,
org.fortiss.tooling.base.ui.editpart.anchor,
org.fortiss.tooling.base.ui.editpart.figure,
org.fortiss.tooling.base.ui.editpart.policy,
org.fortiss.tooling.base.ui.layout,
org.fortiss.tooling.base.ui.layout.constants,
org.fortiss.tooling.base.ui.layout.util
......@@ -4,13 +4,13 @@
<extension
point="org.eclipse.ui.preferencePages">
<page
class="org.fortiss.tooling.kernel.base.ui.preferences.MainPreferencePage"
class="org.fortiss.tooling.base.ui.preferences.MainPreferencePage"
id="org.fortiss.tooling.base.ui.preferences.main"
name="Fortiss Tooling">
</page>
<page
category="org.fortiss.tooling.base.ui.preferences.main"
class="org.fortiss.tooling.kernel.base.ui.preferences.GraphicalViewerPreferencePage"
class="org.fortiss.tooling.base.ui.preferences.GraphicalViewerPreferencePage"
id="org.fortiss.tooling.base.ui.preference.graphical.viewer"
name="Graphical Viewer">
</page>
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui;
package org.fortiss.tooling.base.ui;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.action;
package org.fortiss.tooling.base.ui.action;
import java.util.Collection;
......
......@@ -15,14 +15,14 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.command;
package org.fortiss.tooling.base.ui.command;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gef.EditPart;
import org.eclipse.gef.commands.Command;
import org.fortiss.tooling.kernel.base.ui.dnd.DragContext;
import org.fortiss.tooling.kernel.base.ui.editpart.policy.ConnectionGraphicalNodeEditPolicy;
import org.fortiss.tooling.base.ui.dnd.DragContext;
import org.fortiss.tooling.base.ui.editpart.policy.ConnectionGraphicalNodeEditPolicy;
import org.fortiss.tooling.kernel.services.IConnectorService;
/**
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.dnd;
package org.fortiss.tooling.base.ui.dnd;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.gef.EditPart;
......
......@@ -15,11 +15,11 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.dnd;
package org.fortiss.tooling.base.ui.dnd;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.gef.EditPart;
import org.fortiss.tooling.kernel.base.ui.editpart.RootEditPartBase;
import org.fortiss.tooling.base.ui.editpart.RootEditPartBase;
import org.fortiss.tooling.kernel.interfaces.ICompositionContext;
/**
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.dnd;
package org.fortiss.tooling.base.ui.dnd;
import org.eclipse.gef.EditPartViewer;
import org.eclipse.gef.Request;
......@@ -26,7 +26,7 @@ import org.eclipse.jface.util.LocalSelectionTransfer;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.dnd.DND;
import org.fortiss.tooling.kernel.base.ui.editor.gef.GraphicalViewerEditorBase;
import org.fortiss.tooling.base.ui.editor.gef.GraphicalViewerEditorBase;
/**
* The drop listener used for {@link GraphicalViewerEditorBase}.
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editor;
package org.fortiss.tooling.base.ui.editor;
import java.util.Collection;
import java.util.List;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editor.gef;
package org.fortiss.tooling.base.ui.editor.gef;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notification;
......@@ -27,7 +27,7 @@ import org.eclipse.gef.commands.CommandStack;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorSite;
import org.eclipse.ui.PartInitException;
import org.fortiss.tooling.kernel.base.ui.internal.command.GEF2ToolingKernelCommandStack;
import org.fortiss.tooling.base.ui.internal.command.GEF2ToolingKernelCommandStack;
import org.fortiss.tooling.kernel.services.IPersistencyService;
/**
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editor.gef;
package org.fortiss.tooling.base.ui.editor.gef;
import java.util.ArrayList;
import java.util.Arrays;
......@@ -49,8 +49,8 @@ import org.eclipse.ui.IEditorSite;
import org.eclipse.ui.ISelectionListener;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.PartInitException;
import org.fortiss.tooling.kernel.base.ui.action.ModelElementsActionBase;
import org.fortiss.tooling.kernel.base.ui.dnd.DropTargetListener;
import org.fortiss.tooling.base.ui.action.ModelElementsActionBase;
import org.fortiss.tooling.base.ui.dnd.DropTargetListener;
import org.fortiss.tooling.kernel.ui.services.IEditPartFactoryService;
/**
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import org.fortiss.tooling.base.model.element.IConnector;
import org.fortiss.tooling.base.model.layout.ILayoutedModelElement;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notification;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notification;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notification;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notification;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import java.util.List;
......@@ -29,8 +29,8 @@ import org.eclipse.gef.Request;
import org.eclipse.gef.RequestConstants;
import org.eclipse.swt.graphics.Color;
import org.fortiss.tooling.base.model.layout.ILayoutedModelElement;
import org.fortiss.tooling.kernel.base.ui.layout.constants.RecommendedLayoutConstants;
import org.fortiss.tooling.kernel.base.ui.layout.util.LayoutDataUtils;
import org.fortiss.tooling.base.ui.layout.constants.RecommendedLayoutConstants;
import org.fortiss.tooling.base.ui.layout.util.LayoutDataUtils;
import org.fortiss.tooling.kernel.model.INamedCommentedElement;
import org.fortiss.tooling.kernel.ui.services.IModelElementService;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import org.eclipse.draw2d.ConnectionAnchor;
import org.eclipse.draw2d.geometry.Rectangle;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import java.util.ArrayList;
import java.util.List;
......
......@@ -15,7 +15,7 @@ $Id$
| See the License for the specific language governing permissions and |
| limitations under the License. |
+--------------------------------------------------------------------------*/
package org.fortiss.tooling.kernel.base.ui.editpart;
package org.fortiss.tooling.base.ui.editpart;
import org.eclipse.gef.GraphicalEditPart;
import org.eclipse.gef.SnapToGrid;
......
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