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