Revision 104,
571 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[104] | 1 | package schedframe.scheduling; |
---|
| 2 | |
---|
| 3 | import org.joda.time.MutableInterval; |
---|
| 4 | import org.joda.time.ReadableDuration; |
---|
| 5 | |
---|
| 6 | import schedframe.scheduling.utils.DescriptionContainer; |
---|
| 7 | |
---|
| 8 | /** |
---|
| 9 | * |
---|
| 10 | * @author Marcin Krystek |
---|
| 11 | * |
---|
| 12 | * @param <T> |
---|
| 13 | */ |
---|
| 14 | public abstract class AbstractTimeRequirements<T> extends MutableInterval implements DescriptionContainer<T> { |
---|
| 15 | |
---|
| 16 | |
---|
| 17 | private static final long serialVersionUID = 414381664327908536L; |
---|
| 18 | |
---|
| 19 | protected T timeRequirements; |
---|
| 20 | |
---|
| 21 | protected ReadableDuration expectedDuration; |
---|
| 22 | |
---|
| 23 | public ReadableDuration getExpectedDuration(){ |
---|
| 24 | return this.expectedDuration; |
---|
| 25 | } |
---|
| 26 | |
---|
| 27 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.