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