1 | |
2 | package de.uka.ipd.sdq.sensorframework.entities.base; |
3 | @javax.persistence.Entity |
4 | |
5 | public abstract class AbstractScalabilitySensor |
6 | |
7 | extends de.uka.ipd.sdq.sensorframework.entities.base.AbstractSensor |
8 | |
9 | implements |
10 | de.uka.ipd.sdq.sensorframework.entities.ScalabilitySensor |
11 | |
12 | { |
13 | |
14 | public AbstractScalabilitySensor(de.uka.ipd.sdq.sensorframework.entities.dao.IDAOFactory myFactory) { |
15 | super(myFactory); |
16 | } |
17 | |
18 | |
19 | /* Getter and Setter for Properties with cardinality 0..1 or 1 which are not a composition */ |
20 | |
21 | |
22 | /* Getter and Setter for Properties with cardinality 0..1 or 1 which are a composition */ |
23 | |
24 | |
25 | /* Getter and Setter for Properties with cardinality 0..* which are not a composition */ |
26 | |
27 | |
28 | /* Getter and Setter for Properties with cardinality 0..* which are a composition */ |
29 | |
30 | |
31 | /* Abstract Operations */ |
32 | |
33 | } |
34 | |