Skip to content
Snippets Groups Projects
Commit 46027a08 authored by Stefan Herrnleben's avatar Stefan Herrnleben
Browse files

substitute AbstractEntityType through ITypedEntity

parent a4865a22
No related branches found
No related tags found
No related merge requests found
......@@ -429,40 +429,40 @@ class ExponentialFunction extends Function {
// Entity Types
//
class EntityTypes {
contains AbstractEntityType[] types
contains ITypedEntity[] types
}
abstract class AbstractEntityType extends Entity {
interface ITypedEntity extends NamedElement {
}
class NodeType extends AbstractEntityType {
class NodeType extends ITypedEntity {
refers Node[] entities opposite entityType
}
class EndPerformanceType extends AbstractEntityType {
class EndPerformanceType extends ITypedEntity {
refers EndPerformance[] entities opposite entityType
}
class IntermediatePerformanceType extends AbstractEntityType {
class IntermediatePerformanceType extends ITypedEntity {
refers IntermediatePerformance[] entities opposite entityType
}
class SdnNodePerformanceType extends AbstractEntityType {
class SdnNodePerformanceType extends ITypedEntity {
refers PerformanceSdnNode[] entities opposite entityType
}
class NetworkInterfaceType extends AbstractEntityType {
class NetworkInterfaceType extends ITypedEntity {
refers NetworkInterface[] entities opposite entityType
}
class NetworkInterfacePerformanceType extends AbstractEntityType {
class NetworkInterfacePerformanceType extends ITypedEntity {
refers PerformanceNetworkInterface[] entities opposite entityType
}
class LinkType extends AbstractEntityType {
class LinkType extends ITypedEntity {
refers Link[] entities opposite entityType
}
class LinkPerformanceType extends AbstractEntityType {
class LinkPerformanceType extends ITypedEntity {
refers PerformanceLink[] entities opposite entityType
}
......@@ -439,3 +439,4 @@ _UI_NetworkInterfaceType_entities_feature = Entities
_UI_NetworkInterfacePerformanceType_entities_feature = Entities
_UI_LinkType_entities_feature = Entities
_UI_LinkPerformanceType_entities_feature = Entities
_UI_ITypedEntity_type = ITyped Entity
......
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