| 21 | import pcgen.cdom.base.QualifyingObject; |
| 22 | |
| 23 | public class ACControl extends ConcretePrereqObject implements QualifyingObject |
| 24 | { |
| 25 | private final String type; |
| 26 | |
| 27 | public ACControl(String actype) |
| 28 | { |
| 29 | type = actype; |
| 30 | } |
| 31 | |
| 32 | public String getType() |
| 33 | { |
| 34 | return type; |
| 35 | } |
| 36 | |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected