Skip to content
Snippets Groups Projects
Commit f203f468 authored by Lukas Ladenberger's avatar Lukas Ladenberger
Browse files

cleanup

parent c56c38e1
No related branches found
No related tags found
No related merge requests found
Showing
with 59 additions and 128 deletions
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
<extension <extension
point="org.eclipse.ui.commands"> point="org.eclipse.ui.commands">
<command <command
defaultHandler="de.bmotionstudio.gef.editor.internal.OpenWebsiteHandler" defaultHandler="de.bmotionstudio.gef.editor.handler.OpenWebsiteHandler"
id="de.bmotionstudio.gef.editor.command.openBMotionStudioWebsite" id="de.bmotionstudio.gef.editor.command.openBMotionStudioWebsite"
name="Open website"> name="Open website">
</command> </command>
...@@ -129,7 +129,7 @@ ...@@ -129,7 +129,7 @@
name="Start Visualization from Editor"> name="Start Visualization from Editor">
</command> </command>
<command <command
defaultHandler="de.bmotionstudio.gef.editor.internal.StartVisualizationFileHandler" defaultHandler="de.bmotionstudio.gef.editor.handler.StartVisualizationFileHandler"
id="de.bmotionstudio.command.startVisualizationFromFile" id="de.bmotionstudio.command.startVisualizationFromFile"
name="Start Visualization from File"> name="Start Visualization from File">
</command> </command>
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
<extension <extension
point="org.eclipse.ui.handlers"> point="org.eclipse.ui.handlers">
<handler <handler
class="de.bmotionstudio.gef.editor.internal.StartVisualizationEditorHandler" class="de.bmotionstudio.gef.editor.handler.StartVisualizationEditorHandler"
commandId="de.bmotionstudio.command.startVisualizationFromEditor"> commandId="de.bmotionstudio.command.startVisualizationFromEditor">
<enabledWhen> <enabledWhen>
<with <with
...@@ -166,6 +166,9 @@ ...@@ -166,6 +166,9 @@
<registerImages <registerImages
class="de.bmotionstudio.gef.editor.EditorImageRegistry"> class="de.bmotionstudio.gef.editor.EditorImageRegistry">
</registerImages> </registerImages>
<registerImages
class="de.bmotionstudio.gef.editor.ImageRegistry">
</registerImages>
</extension> </extension>
<extension <extension
...@@ -179,142 +182,142 @@ ...@@ -179,142 +182,142 @@
icon="icons/eclipse16/image_obj.gif" icon="icons/eclipse16/image_obj.gif"
id="de.bmotionstudio.gef.editor.image" id="de.bmotionstudio.gef.editor.image"
name="Image" name="Image"
service="de.bmotionstudio.gef.editor.service.BImageService"> service="de.bmotionstudio.gef.editor.model.service.BImageService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_button.gif" icon="icons/icon_button.gif"
id="de.bmotionstudio.gef.editor.button" id="de.bmotionstudio.gef.editor.button"
name="Button" name="Button"
service="de.bmotionstudio.gef.editor.service.BButtonService"> service="de.bmotionstudio.gef.editor.model.service.BButtonService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_radiobutton_c.gif" icon="icons/icon_radiobutton_c.gif"
id="de.bmotionstudio.gef.editor.radiobutton" id="de.bmotionstudio.gef.editor.radiobutton"
name="Radiobutton" name="Radiobutton"
service="de.bmotionstudio.gef.editor.service.BRadioButtonService"> service="de.bmotionstudio.gef.editor.model.service.BRadioButtonService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_checked.gif" icon="icons/icon_checked.gif"
id="de.bmotionstudio.gef.editor.checkbox" id="de.bmotionstudio.gef.editor.checkbox"
name="Checkbox" name="Checkbox"
service="de.bmotionstudio.gef.editor.service.BCheckboxService"> service="de.bmotionstudio.gef.editor.model.service.BCheckboxService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/eclipse16/overview_obj.gif" icon="icons/eclipse16/overview_obj.gif"
id="de.bmotionstudio.gef.editor.composite" id="de.bmotionstudio.gef.editor.composite"
name="Composite" name="Composite"
service="de.bmotionstudio.gef.editor.service.BCompositeService"> service="de.bmotionstudio.gef.editor.model.service.BCompositeService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_text.gif" icon="icons/icon_text.gif"
id="de.bmotionstudio.gef.editor.text" id="de.bmotionstudio.gef.editor.text"
name="Text" name="Text"
service="de.bmotionstudio.gef.editor.service.BTextService"> service="de.bmotionstudio.gef.editor.model.service.BTextService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_textfield.gif" icon="icons/icon_textfield.gif"
id="de.bmotionstudio.gef.editor.textfield" id="de.bmotionstudio.gef.editor.textfield"
name="Textfield" name="Textfield"
service="de.bmotionstudio.gef.editor.service.BTextfieldService"> service="de.bmotionstudio.gef.editor.model.service.BTextfieldService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_rectangle.gif" icon="icons/icon_rectangle.gif"
id="de.bmotionstudio.gef.editor.rectangle" id="de.bmotionstudio.gef.editor.rectangle"
name="Rectanlge" name="Rectanlge"
service="de.bmotionstudio.gef.editor.service.BRectangleService"> service="de.bmotionstudio.gef.editor.model.service.BRectangleService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_ellipse.gif" icon="icons/icon_ellipse.gif"
id="de.bmotionstudio.gef.editor.ellipse" id="de.bmotionstudio.gef.editor.ellipse"
name="Ellipse" name="Ellipse"
service="de.bmotionstudio.gef.editor.service.BEllipseService"> service="de.bmotionstudio.gef.editor.model.service.BEllipseService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/icon_connection16.gif" icon="icons/icon_connection16.gif"
id="de.bmotionstudio.gef.editor.connection" id="de.bmotionstudio.gef.editor.connection"
name="Connection" name="Connection"
service="de.bmotionstudio.gef.editor.service.BConnectionService"> service="de.bmotionstudio.gef.editor.model.service.BConnectionService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/eclipse16/prop_ps.gif" icon="icons/eclipse16/prop_ps.gif"
id="de.bmotionstudio.gef.editor.table" id="de.bmotionstudio.gef.editor.table"
name="Table" name="Table"
service="de.bmotionstudio.gef.editor.service.BTableService"> service="de.bmotionstudio.gef.editor.model.service.BTableService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/eclipse16/prop_ps2.gif" icon="icons/eclipse16/prop_ps2.gif"
id="de.bmotionstudio.gef.editor.tablecolumn" id="de.bmotionstudio.gef.editor.tablecolumn"
name="Column" name="Column"
service="de.bmotionstudio.gef.editor.service.BTableColumnService"> service="de.bmotionstudio.gef.editor.model.service.BTableColumnService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.group.main" groupid="de.bmotionstudio.gef.editor.group.main"
icon="icons/eclipse16/prop_ps3.gif" icon="icons/eclipse16/prop_ps3.gif"
id="de.bmotionstudio.gef.editor.tablecell" id="de.bmotionstudio.gef.editor.tablecell"
name="Cell" name="Cell"
service="de.bmotionstudio.gef.editor.service.BTableCellService"> service="de.bmotionstudio.gef.editor.model.service.BTableCellService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.railway.group" groupid="de.bmotionstudio.gef.editor.railway.group"
icon="icons/icon_signal.gif" icon="icons/icon_signal.gif"
id="de.bmotionstudio.gef.editor.signal" id="de.bmotionstudio.gef.editor.signal"
name="Signal" name="Signal"
service="de.bmotionstudio.gef.editor.service.SignalService"> service="de.bmotionstudio.gef.editor.model.service.SignalService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.railway.group" groupid="de.bmotionstudio.gef.editor.railway.group"
icon="icons/eclipse16/smartmode_co.gif" icon="icons/eclipse16/smartmode_co.gif"
id="de.bmotionstudio.gef.editor.light" id="de.bmotionstudio.gef.editor.light"
name="Light" name="Light"
service="de.bmotionstudio.gef.editor.service.LightService"> service="de.bmotionstudio.gef.editor.model.service.LightService">
</control> </control>
<group
id="de.bmotionstudio.gef.editor.industry.group"
name="Industry">
</group>
<control <control
groupid="de.bmotionstudio.gef.editor.industry.group" groupid="de.bmotionstudio.gef.editor.industry.group"
icon="icons/icon_tank.gif" icon="icons/icon_tank.gif"
id="de.bmotionstudio.gef.editor.tank" id="de.bmotionstudio.gef.editor.tank"
name="Tank" name="Tank"
service="de.bmotionstudio.gef.editor.service.TankService"> service="de.bmotionstudio.gef.editor.model.service.TankService">
</control> </control>
<group
id="de.bmotionstudio.gef.editor.railway.group"
name="Railway">
</group>
<control <control
groupid="de.bmotionstudio.gef.editor.railway.group" groupid="de.bmotionstudio.gef.editor.railway.group"
icon="icons/icon_tracknode.gif" icon="icons/icon_tracknode.gif"
id="de.bmotionstudio.gef.editor.tracknode" id="de.bmotionstudio.gef.editor.tracknode"
name="Node" name="Node"
service="de.bmotionstudio.gef.editor.service.TrackNodeService"> service="de.bmotionstudio.gef.editor.model.service.TrackNodeService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.railway.group" groupid="de.bmotionstudio.gef.editor.railway.group"
icon="icons/icon_track.gif" icon="icons/icon_track.gif"
id="de.bmotionstudio.gef.editor.track" id="de.bmotionstudio.gef.editor.track"
name="Trac" name="Trac"
service="de.bmotionstudio.gef.editor.service.TrackService"> service="de.bmotionstudio.gef.editor.model.service.TrackService">
</control> </control>
<control <control
groupid="de.bmotionstudio.gef.editor.railway.group" groupid="de.bmotionstudio.gef.editor.railway.group"
icon="icons/icon_switch.gif" icon="icons/icon_switch.gif"
id="de.bmotionstudio.gef.editor.switch" id="de.bmotionstudio.gef.editor.switch"
name="Switch" name="Switch"
service="de.bmotionstudio.gef.editor.service.SwitchService"> service="de.bmotionstudio.gef.editor.model.service.SwitchService">
</control> </control>
<group
id="de.bmotionstudio.gef.editor.railway.group"
name="Railway">
</group>
<group
id="de.bmotionstudio.gef.editor.industry.group"
name="Industry">
</group>
</extension> </extension>
<extension <extension
point="de.bmotionstudio.gef.editor.observer"> point="de.bmotionstudio.gef.editor.observer">
...@@ -388,12 +391,6 @@ ...@@ -388,12 +391,6 @@
class="de.bmotionstudio.gef.editor.InstallMenu"> class="de.bmotionstudio.gef.editor.InstallMenu">
</menu> </menu>
</extension> </extension>
<extension
point="de.bmotionstudio.gef.editor.registerImages">
<registerImages
class="de.bmotionstudio.gef.editor.ImageRegistry">
</registerImages>
</extension>
<extension <extension
point="de.bmotionstudio.gef.editor.language"> point="de.bmotionstudio.gef.editor.language">
<language <language
......
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
</annotation> </annotation>
<complexType> <complexType>
<sequence minOccurs="0" maxOccurs="unbounded"> <sequence minOccurs="0" maxOccurs="unbounded">
<element ref="control" minOccurs="0" maxOccurs="1"/>
<element ref="group" minOccurs="0" maxOccurs="1"/> <element ref="group" minOccurs="0" maxOccurs="1"/>
<element ref="control" minOccurs="0" maxOccurs="1"/> <element ref="control" minOccurs="0" maxOccurs="1"/>
</sequence> </sequence>
...@@ -75,9 +74,6 @@ ...@@ -75,9 +74,6 @@
</appInfo> </appInfo>
</annotation> </annotation>
<complexType> <complexType>
<sequence>
<element ref="attributes" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="id" type="string" use="required"> <attribute name="id" type="string" use="required">
<annotation> <annotation>
<documentation> <documentation>
...@@ -122,69 +118,14 @@ ...@@ -122,69 +118,14 @@
</complexType> </complexType>
</element> </element>
<element name="attribute-string">
<complexType>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
The id of the referenced attribute. Since the same attribute could be assigned to different controls the corresponding attibute is defined in a seperate exention point (de.bmotionstudio.gef.editor.attribute).
</documentation>
</annotation>
</attribute>
<attribute name="default-value" type="string" use="required">
<annotation>
<documentation>
The default value of this attribute for this control
</documentation>
</annotation>
</attribute>
<attribute name="editable" type="boolean" use="default" value="true">
<annotation>
<documentation>
Boolean value - Option to decide whenever this attribute should be editable or not.
</documentation>
</annotation>
</attribute>
<attribute name="show" type="boolean" use="default" value="true">
<annotation>
<documentation>
Boolean value - Option to decide whenever this attribute should be displayed in the properties view.
</documentation>
</annotation>
</attribute>
</complexType>
</element>
<element name="attribute-java">
<complexType>
<attribute name="id" type="string" use="required">
<annotation> <annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="default-value" type="string" use="required">
<annotation>
<documentation>
</documentation>
<appInfo> <appInfo>
<meta.attribute kind="java" basedOn=":de.bmotionstudio.core.IGetDefaultValue"/> <meta.section type="apiInfo"/>
</appInfo> </appInfo>
<documentation>
[Enter API information here.]
</documentation>
</annotation> </annotation>
</attribute>
</complexType>
</element>
<element name="attributes">
<complexType>
<sequence>
<element ref="attribute-java" minOccurs="0" maxOccurs="unbounded"/>
<element ref="attribute-string" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
</element>
<annotation> <annotation>
<appInfo> <appInfo>
...@@ -204,15 +145,6 @@ ...@@ -204,15 +145,6 @@
</documentation> </documentation>
</annotation> </annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
[Enter API information here.]
</documentation>
</annotation>
<annotation> <annotation>
<appInfo> <appInfo>
<meta.section type="implementation"/> <meta.section type="implementation"/>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.internal; package de.bmotionstudio.gef.editor.handler;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.net.URL; import java.net.URL;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.internal; package de.bmotionstudio.gef.editor.handler;
import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionEvent;
...@@ -19,6 +19,7 @@ import org.eclipse.ui.PlatformUI; ...@@ -19,6 +19,7 @@ import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.WorkbenchException; import org.eclipse.ui.WorkbenchException;
import de.bmotionstudio.gef.editor.BMotionEditorPlugin; import de.bmotionstudio.gef.editor.BMotionEditorPlugin;
import de.bmotionstudio.gef.editor.internal.VisualizationProgressBar;
import de.prob.core.Animator; import de.prob.core.Animator;
import de.prob.logging.Logger; import de.prob.logging.Logger;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.internal; package de.bmotionstudio.gef.editor.handler;
import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionEvent;
...@@ -30,6 +30,7 @@ import org.eclipse.ui.part.FileEditorInput; ...@@ -30,6 +30,7 @@ import org.eclipse.ui.part.FileEditorInput;
import de.bmotionstudio.gef.editor.BMotionEditorPlugin; import de.bmotionstudio.gef.editor.BMotionEditorPlugin;
import de.bmotionstudio.gef.editor.BMotionStudioEditor; import de.bmotionstudio.gef.editor.BMotionStudioEditor;
import de.bmotionstudio.gef.editor.internal.VisualizationProgressBar;
import de.prob.core.Animator; import de.prob.core.Animator;
import de.prob.logging.Logger; import de.prob.logging.Logger;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import org.eclipse.core.runtime.IConfigurationElement; import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.gef.palette.ConnectionCreationToolEntry; import org.eclipse.gef.palette.ConnectionCreationToolEntry;
......
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.AttributeConstants; import de.bmotionstudio.gef.editor.AttributeConstants;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Heinrich Heine Universitaet Duesseldorf * Heinrich Heine Universitaet Duesseldorf
* This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) * This software is licenced under EPL 1.0 (http://www.eclipse.org/org/documents/epl-v10.html)
* */ * */
package de.bmotionstudio.gef.editor.service; package de.bmotionstudio.gef.editor.model.service;
import de.bmotionstudio.gef.editor.AbstractBControlService; import de.bmotionstudio.gef.editor.AbstractBControlService;
import de.bmotionstudio.gef.editor.IBControlService; import de.bmotionstudio.gef.editor.IBControlService;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment