mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: fd3331c90f28706c98d60134126defb1355e595b
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() {
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} |