mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
21 lines
320 B
Java
21 lines
320 B
Java
enum WarningAndError {
|
|
A;
|
|
|
|
public boolean isFirstChild() {
|
|
return false;
|
|
}
|
|
|
|
enum Colors {
|
|
SPADES,
|
|
DIAMOND,
|
|
HEARTS,
|
|
CLUBS;
|
|
<caret>private BigDecimal value;
|
|
public enum Direction {
|
|
UP, DOWN;
|
|
}
|
|
|
|
Colors() {
|
|
}
|
|
}
|
|
} |