mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 22:20:24 +07:00
8 lines
147 B
Java
8 lines
147 B
Java
// "Create constructor" "true"
|
|
public enum ReportType {
|
|
AGING("Aging");
|
|
|
|
ReportType(String aging) {
|
|
<selection></selection>
|
|
}
|
|
} |