Skip to content
Snippets Groups Projects
Commit 8c8d19c2 authored by Tiziano Munaro's avatar Tiziano Munaro
Browse files

Rename non-UI KISS detail items for consistency

parent 2c626ec0
No related branches found
No related tags found
1 merge request!123[4020] KISS View to JavaFX
Showing with 19 additions and 19 deletions
...@@ -28,11 +28,11 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem; ...@@ -28,11 +28,11 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem;
* *
* @author hoelzl * @author hoelzl
*/ */
public final class ElementCompositorServiceIntrospectionDetailsItem public final class ElementCompositorKISSDetailsItem
extends EObjectAwareIntrospectionDetailsItemBase<IElementCompositor<EObject>> { extends EObjectAwareKISSDetailsItemBase<IElementCompositor<EObject>> {
/** Constructor. */ /** Constructor. */
public ElementCompositorServiceIntrospectionDetailsItem( public ElementCompositorKISSDetailsItem(
Map<Class<?>, List<IElementCompositor<EObject>>> handlers) { Map<Class<?>, List<IElementCompositor<EObject>>> handlers) {
super(handlers); super(handlers);
} }
......
...@@ -28,14 +28,14 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem; ...@@ -28,14 +28,14 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem;
* *
* @author hoelzl * @author hoelzl
*/ */
public abstract class HandlerListIntrospectionDetailsItemBase<T extends Object> public abstract class HandlerListKISSDetailsItemBase<T extends Object>
implements IIntrospectionDetailsItem { implements IIntrospectionDetailsItem {
/** Read-only copy of the services handler list. */ /** Read-only copy of the services handler list. */
protected final List<T> handlerList; protected final List<T> handlerList;
/** Constructor. */ /** Constructor. */
public HandlerListIntrospectionDetailsItemBase(List<T> handlerList) { public HandlerListKISSDetailsItemBase(List<T> handlerList) {
this.handlerList = handlerList; this.handlerList = handlerList;
} }
......
...@@ -28,11 +28,11 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem; ...@@ -28,11 +28,11 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem;
* *
* @author hoelzl * @author hoelzl
*/ */
public final class LibraryServiceIntrospectionDetailsItem public final class LibraryKISSDetailsItem
extends EObjectAwareIntrospectionDetailsItemBase<ILibraryElementHandler<EObject>> { extends EObjectAwareKISSDetailsItemBase<ILibraryElementHandler<EObject>> {
/** Constructor. */ /** Constructor. */
public LibraryServiceIntrospectionDetailsItem( public LibraryKISSDetailsItem(
Map<Class<?>, List<ILibraryElementHandler<EObject>>> handlerMap) { Map<Class<?>, List<ILibraryElementHandler<EObject>>> handlerMap) {
super(handlerMap); super(handlerMap);
} }
......
...@@ -27,11 +27,11 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem; ...@@ -27,11 +27,11 @@ import org.fortiss.tooling.kernel.introspection.IIntrospectionDetailsItem;
* *
* @author hoelzl * @author hoelzl
*/ */
public final class MigrationServiceIntrospectionDetailsItem public final class MigrationKISSDetailsItem
extends EObjectAwareIntrospectionDetailsItemBase<IMigrationProvider> { extends EObjectAwareKISSDetailsItemBase<IMigrationProvider> {
/** Constructor. */ /** Constructor. */
public MigrationServiceIntrospectionDetailsItem( public MigrationKISSDetailsItem(
Map<Class<?>, List<IMigrationProvider>> handlers) { Map<Class<?>, List<IMigrationProvider>> handlers) {
super(handlers); super(handlers);
} }
......
...@@ -26,13 +26,13 @@ import org.fortiss.tooling.kernel.service.IPersistencyService; ...@@ -26,13 +26,13 @@ import org.fortiss.tooling.kernel.service.IPersistencyService;
* *
* @author hoelzl * @author hoelzl
*/ */
public final class PersistencyServiceIntrospectionDetailsItem implements IIntrospectionDetailsItem { public final class PersistencyKISSDetailsItem implements IIntrospectionDetailsItem {
/** The storage providers. */ /** The storage providers. */
private final Collection<IStorageProvider> providers; private final Collection<IStorageProvider> providers;
/** Constructor. */ /** Constructor. */
public PersistencyServiceIntrospectionDetailsItem(Collection<IStorageProvider> providers) { public PersistencyKISSDetailsItem(Collection<IStorageProvider> providers) {
this.providers = providers; this.providers = providers;
} }
......
...@@ -26,11 +26,11 @@ import org.fortiss.tooling.kernel.service.IPrototypeService; ...@@ -26,11 +26,11 @@ import org.fortiss.tooling.kernel.service.IPrototypeService;
* *
* @author hoelzl * @author hoelzl
*/ */
public final class PrototypeServiceIntrospectionDetailsItem public final class PrototypeKISSDetailsItem
extends HandlerListIntrospectionDetailsItemBase<IPrototypeProvider> { extends HandlerListKISSDetailsItemBase<IPrototypeProvider> {
/** Constructor. */ /** Constructor. */
public PrototypeServiceIntrospectionDetailsItem(List<IPrototypeProvider> handlerList) { public PrototypeKISSDetailsItem(List<IPrototypeProvider> handlerList) {
super(handlerList); super(handlerList);
} }
} }
...@@ -27,11 +27,11 @@ import org.fortiss.tooling.kernel.service.ITransformationService; ...@@ -27,11 +27,11 @@ import org.fortiss.tooling.kernel.service.ITransformationService;
* *
* @author hoelzl * @author hoelzl
*/ */
public final class TransformationServiceIntrospectionDetailsItem public final class TransformationKISSDetailsItem
extends EObjectAware2IntrospectionDetailsItemBase<ITransformationProvider> { extends EObjectAware2KISSDetailsItemBase<ITransformationProvider> {
/** Constructor. */ /** Constructor. */
public TransformationServiceIntrospectionDetailsItem( public TransformationKISSDetailsItem(
Map<Class<?>, Map<Class<?>, List<ITransformationProvider>>> handlerMap) { Map<Class<?>, Map<Class<?>, List<ITransformationProvider>>> handlerMap) {
super(handlerMap); super(handlerMap);
} }
......
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