blob: a0373dad907b3abffc7511c7fcb5d8c2268e1bc3 [file] [log] [blame]
// "Create Constructor" "true"
public enum ReportType {
AGING("Aging");
ReportType(String aging) {
<selection></selection>
}
}