01: // license-header java merge-point
02: /**
03: * This is only generated once! It will never be overwritten.
04: * You can (and have to!) safely modify it by hand.
05: */package org.andromda.samples.animalquiz.decisiontree;
06:
07: /**
08: * @see org.andromda.samples.animalquiz.decisiontree.DecisionItem
09: */
10: public abstract class DecisionItemImpl extends
11: org.andromda.samples.animalquiz.decisiontree.DecisionItem {
12: /**
13: * The serial version UID of this class. Needed for serialization.
14: */
15: private static final long serialVersionUID = -2291269241763377348L;
16:
17: /**
18: * @see org.andromda.samples.animalquiz.decisiontree.DecisionItem#getPrompt()
19: */
20: public abstract java.lang.String getPrompt()
21: throws org.andromda.samples.animalquiz.decisiontree.DecisionException;
22: }
|