mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-13 11:36:53 +07:00
8 lines
220 B
Java
8 lines
220 B
Java
// "Create Constructor" "true"
|
|
public enum ReportType {
|
|
AGING("Aging");
|
|
|
|
ReportType(String aging) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
} |