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