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

RED

* only issue is that some class names are too long. Maybe consider using
KISS abbreviation in class names

Issue-Ref: 4020
Issue-Url: https://af3-developer.fortiss.org/issues/4020



Signed-off-by: default avatarJohannes Eder <eder@fortiss.org>
parent 41e7561b
No related branches found
No related tags found
1 merge request!123[4020] KISS View to JavaFX
Showing
with 60 additions and 15 deletions
ActionService.java e29126b5947c9fd2f1d82bb87001b9d0ead50c3b GREEN ActionService.java e29126b5947c9fd2f1d82bb87001b9d0ead50c3b GREEN
AllocationEditPartFactoryService.java 1e49ad0e8099ff33b4eba4bd347c407f3b0d60b0 YELLOW AllocationEditPartFactoryService.java 1e49ad0e8099ff33b4eba4bd347c407f3b0d60b0 GREEN
ContextMenuService.java 1afb387abdc985bf71a72001d18a6a8dc10f0045 YELLOW ContextMenuService.java 1afb387abdc985bf71a72001d18a6a8dc10f0045 GREEN
EditPartFactoryService.java ff5fae059a691d42a576cf09d6a2d1d5f209d211 YELLOW EditPartFactoryService.java ff5fae059a691d42a576cf09d6a2d1d5f209d211 GREEN
MarkerService.java 208f97f3ccabf0947702a17ddca23d8766a268f4 GREEN MarkerService.java 208f97f3ccabf0947702a17ddca23d8766a268f4 GREEN
ModelEditorBindingService.java 17275fc9708ece361d3bc4ce3a165bca9647e4b3 YELLOW ModelEditorBindingService.java 17275fc9708ece361d3bc4ce3a165bca9647e4b3 GREEN
ModelElementHandlerService.java ef618c1c0852c6cb087443fd3d4c74279d8b4c0a YELLOW ModelElementHandlerService.java ef618c1c0852c6cb087443fd3d4c74279d8b4c0a GREEN
NavigatorService.java 1d773dde3791ddf7051616fe249558e7e307757d GREEN NavigatorService.java 1d773dde3791ddf7051616fe249558e7e307757d GREEN
ToolingKernelUIInternal.java a70d19883dfb315d860233156d8524cf1ac2952f GREEN ToolingKernelUIInternal.java a70d19883dfb315d860233156d8524cf1ac2952f GREEN
TutorialUIService.java b1d632eca91b4feb583f3930cd6ee4722dd9bfed GREEN TutorialUIService.java b1d632eca91b4feb583f3930cd6ee4722dd9bfed GREEN
ClipboardCopyHelper.java 1d9a9891278ab84932857eaa978dda4391978047 YELLOW ClipboardCopyHelper.java 1d9a9891278ab84932857eaa978dda4391978047 GREEN
KISSCompositeFXController.java 39b92f1887ef936272ccaff70dfcdf52f6f96d2e YELLOW KISSCompositeFXController.java 10f73a3a2034824eb14a8fda1f67bcc05285e3b0 GREEN
KISSConsoleFXController.java dc8b80927cb9815deac822e2ff5a0260242f0b5f RED KISSFXController.java c38fc9efa826c68e74ac118e666088f407cb54fb GREEN
KISSConsoleFXViewPart.java 5d9a2c355f52735cde8ba1ee0d7d4c12c43068b3 YELLOW KISSServicesFXController.java cb59024c94164cf187041634c38a6dee1107e3a2 GREEN
KISSFXController.java c38fc9efa826c68e74ac118e666088f407cb54fb YELLOW KISSServicesFXViewPart.java 1a8370028bf79a8071f616dae985df3831c7f8b6 GREEN
KISSServicesFXController.java cb59024c94164cf187041634c38a6dee1107e3a2 YELLOW
KISSServicesFXViewPart.java 1a8370028bf79a8071f616dae985df3831c7f8b6 YELLOW
...@@ -36,5 +36,4 @@ public abstract class KISSCompositeFXController<T extends Node> ...@@ -36,5 +36,4 @@ public abstract class KISSCompositeFXController<T extends Node>
* {@link KISSFXController}'s {@link DynamicTreeTableViewer} changes. * {@link KISSFXController}'s {@link DynamicTreeTableViewer} changes.
*/ */
public abstract void changed(IIntrospectionItem selection); public abstract void changed(IIntrospectionItem selection);
} }
DetailsUIHandlerBase.java 3472e600cf406d96e00ae4e51d3bd4c159a712da YELLOW DetailsUIHandlerBase.java 3472e600cf406d96e00ae4e51d3bd4c159a712da GREEN
KISSDetailsUIRegistry.java 0aa953ec980d980408c036ffe4b0a6ec64096458 YELLOW KISSDetailsUIRegistry.java 0aa953ec980d980408c036ffe4b0a6ec64096458 GREEN
...@@ -29,6 +29,9 @@ import javafx.scene.Node; ...@@ -29,6 +29,9 @@ import javafx.scene.Node;
* *
* @author hoelzl * @author hoelzl
*/ */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public class AllocationEditPartFactoryServiceIntrospectionDetailsUIHandler public class AllocationEditPartFactoryServiceIntrospectionDetailsUIHandler
extends EObjectAwareIntrospectionDetailsUIHandlerBase { extends EObjectAwareIntrospectionDetailsUIHandlerBase {
......
...@@ -20,6 +20,9 @@ import org.fortiss.tooling.kernel.service.IConnectionCompositorService; ...@@ -20,6 +20,9 @@ import org.fortiss.tooling.kernel.service.IConnectionCompositorService;
import javafx.scene.Node; import javafx.scene.Node;
/** Introspection UI handler for the {@link IConnectionCompositorService}. */ /** Introspection UI handler for the {@link IConnectionCompositorService}. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class ConnectionCompositorServiceIntrospectionDetailsUIHandler public final class ConnectionCompositorServiceIntrospectionDetailsUIHandler
extends EObjectAware2IntrospectionDetailsUIHandlerBase { extends EObjectAware2IntrospectionDetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
......
...@@ -29,6 +29,9 @@ import javafx.scene.control.ContextMenu; ...@@ -29,6 +29,9 @@ import javafx.scene.control.ContextMenu;
* Introspection UI handler for {@link IIntrospectionItem}s provided by * Introspection UI handler for {@link IIntrospectionItem}s provided by
* {@link IConstraintCheckerService}. * {@link IConstraintCheckerService}.
*/ */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class ConstraintCheckerServiceIntrospectionDetailsUIHandler public final class ConstraintCheckerServiceIntrospectionDetailsUIHandler
extends IntrospectionDetailsUIHandlerBase { extends IntrospectionDetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
......
...@@ -32,6 +32,9 @@ import javafx.scene.control.ContextMenu; ...@@ -32,6 +32,9 @@ import javafx.scene.control.ContextMenu;
* Introspection UI handler for {@link IIntrospectionItem}s provided by * Introspection UI handler for {@link IIntrospectionItem}s provided by
* {@link IConstraintCheckerService}. * {@link IConstraintCheckerService}.
*/ */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class ContextMenuServiceIntrospectionDetailsUIHandler public final class ContextMenuServiceIntrospectionDetailsUIHandler
extends IntrospectionDetailsUIHandlerBase { extends IntrospectionDetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
......
...@@ -27,6 +27,9 @@ import javafx.scene.Node; ...@@ -27,6 +27,9 @@ import javafx.scene.Node;
import javafx.scene.control.ContextMenu; import javafx.scene.control.ContextMenu;
/** Base class for details UI implementations with filtered tree viewer. */ /** Base class for details UI implementations with filtered tree viewer. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public abstract class EObjectAware2IntrospectionDetailsUIHandlerBase public abstract class EObjectAware2IntrospectionDetailsUIHandlerBase
extends IntrospectionDetailsUIHandlerBase { extends IntrospectionDetailsUIHandlerBase {
......
...@@ -27,6 +27,9 @@ import javafx.scene.Node; ...@@ -27,6 +27,9 @@ import javafx.scene.Node;
import javafx.scene.control.ContextMenu; import javafx.scene.control.ContextMenu;
/** Base class for details UI implementations with filtered tree viewer. */ /** Base class for details UI implementations with filtered tree viewer. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public abstract class EObjectAwareIntrospectionDetailsUIHandlerBase public abstract class EObjectAwareIntrospectionDetailsUIHandlerBase
extends IntrospectionDetailsUIHandlerBase { extends IntrospectionDetailsUIHandlerBase {
......
...@@ -36,6 +36,9 @@ import javafx.scene.control.ContextMenu; ...@@ -36,6 +36,9 @@ import javafx.scene.control.ContextMenu;
* *
* @author hoelzl * @author hoelzl
*/ */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class EclipseResourceStorageProviderIntrospectionDetailsUIHandler public final class EclipseResourceStorageProviderIntrospectionDetailsUIHandler
extends IntrospectionDetailsUIHandlerBase { extends IntrospectionDetailsUIHandlerBase {
......
...@@ -29,6 +29,9 @@ import javafx.scene.Node; ...@@ -29,6 +29,9 @@ import javafx.scene.Node;
* *
* @author hoelzl * @author hoelzl
*/ */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public class EditPartFactoryServiceIntrospectionDetailsUIHandler public class EditPartFactoryServiceIntrospectionDetailsUIHandler
extends EObjectAwareIntrospectionDetailsUIHandlerBase { extends EObjectAwareIntrospectionDetailsUIHandlerBase {
......
...@@ -20,6 +20,9 @@ import org.fortiss.tooling.kernel.service.IElementCompositorService; ...@@ -20,6 +20,9 @@ import org.fortiss.tooling.kernel.service.IElementCompositorService;
import javafx.scene.Node; import javafx.scene.Node;
/** Introspection UI handler for the {@link IElementCompositorService}. */ /** Introspection UI handler for the {@link IElementCompositorService}. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class ElementCompositorServiceIntrospectionDetailsUIHandler public final class ElementCompositorServiceIntrospectionDetailsUIHandler
extends EObjectAwareIntrospectionDetailsUIHandlerBase { extends EObjectAwareIntrospectionDetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
......
...@@ -28,6 +28,9 @@ import javafx.scene.control.TextField; ...@@ -28,6 +28,9 @@ import javafx.scene.control.TextField;
import javafx.scene.layout.BorderPane; import javafx.scene.layout.BorderPane;
/** Base class for details UI implementations with filtered tree viewer. */ /** Base class for details UI implementations with filtered tree viewer. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public abstract class IntrospectionDetailsUIHandlerBase extends DetailsUIHandlerBase { public abstract class IntrospectionDetailsUIHandlerBase extends DetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
......
...@@ -28,6 +28,9 @@ import javafx.scene.Node; ...@@ -28,6 +28,9 @@ import javafx.scene.Node;
* *
* @author hoelzl * @author hoelzl
*/ */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class LibraryServiceIntrospectionDetailsUIHandler public final class LibraryServiceIntrospectionDetailsUIHandler
extends EObjectAwareIntrospectionDetailsUIHandlerBase { extends EObjectAwareIntrospectionDetailsUIHandlerBase {
......
...@@ -21,6 +21,9 @@ import org.fortiss.tooling.kernel.ui.introspection.details.DetailsUIHandlerBase; ...@@ -21,6 +21,9 @@ import org.fortiss.tooling.kernel.ui.introspection.details.DetailsUIHandlerBase;
import javafx.scene.Node; import javafx.scene.Node;
/** {@link DetailsUIHandlerBase} for {@link IMigrationService}. */ /** {@link DetailsUIHandlerBase} for {@link IMigrationService}. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public class MigrationServiceIntrospectionDetailsUIHandler public class MigrationServiceIntrospectionDetailsUIHandler
extends EObjectAwareIntrospectionDetailsUIHandlerBase { extends EObjectAwareIntrospectionDetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
......
...@@ -21,6 +21,9 @@ import org.fortiss.tooling.kernel.ui.introspection.items.ModelEditorBindingServi ...@@ -21,6 +21,9 @@ import org.fortiss.tooling.kernel.ui.introspection.items.ModelEditorBindingServi
import javafx.scene.Node; import javafx.scene.Node;
/** {@link DetailsUIHandlerBase} for {@link ModelEditorBindingService}. */ /** {@link DetailsUIHandlerBase} for {@link ModelEditorBindingService}. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class ModelEditorBindingServiceIntrospectionDetailsUIHandler public final class ModelEditorBindingServiceIntrospectionDetailsUIHandler
extends EObjectAwareIntrospectionDetailsUIHandlerBase { extends EObjectAwareIntrospectionDetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
......
...@@ -21,6 +21,9 @@ import org.fortiss.tooling.kernel.ui.introspection.items.ModelElementHandlerServ ...@@ -21,6 +21,9 @@ import org.fortiss.tooling.kernel.ui.introspection.items.ModelElementHandlerServ
import javafx.scene.Node; import javafx.scene.Node;
/** {@link DetailsUIHandlerBase} for {@link ModelElementHandlerService}. */ /** {@link DetailsUIHandlerBase} for {@link ModelElementHandlerService}. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class ModelElementHandlerServiceIntrospectionDetailsUIHandler public final class ModelElementHandlerServiceIntrospectionDetailsUIHandler
extends EObjectAwareIntrospectionDetailsUIHandlerBase { extends EObjectAwareIntrospectionDetailsUIHandlerBase {
/** {@inheritDoc} */ /** {@inheritDoc} */
......
...@@ -38,6 +38,9 @@ import javafx.scene.control.ContextMenu; ...@@ -38,6 +38,9 @@ import javafx.scene.control.ContextMenu;
* *
* @author hoelzl * @author hoelzl
*/ */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class PersistencyServiceIntrospectionDetailsUIHandler public final class PersistencyServiceIntrospectionDetailsUIHandler
extends IntrospectionDetailsUIHandlerBase { extends IntrospectionDetailsUIHandlerBase {
......
...@@ -28,6 +28,9 @@ import javafx.scene.Node; ...@@ -28,6 +28,9 @@ import javafx.scene.Node;
import javafx.scene.control.ContextMenu; import javafx.scene.control.ContextMenu;
/** Introspection UI handler for the {@link IPrototypeService}. */ /** Introspection UI handler for the {@link IPrototypeService}. */
// TODO(JE): name too long. Maybe use Kiss abbreviation for all introspection related words. e.g.
// ConnectionCompositorServiceIntrospectionDetailsUIHandler ->
// ConnectionCompositorServiveKISSHandler
public final class PrototypeServiceIntrospectionDetailsUIHandler public final class PrototypeServiceIntrospectionDetailsUIHandler
extends IntrospectionDetailsUIHandlerBase { extends IntrospectionDetailsUIHandlerBase {
......
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