mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
39 lines
601 B
Java
39 lines
601 B
Java
// "Implement methods" "true-preview"
|
|
class Container {
|
|
|
|
private int brushColor = 0x1;
|
|
|
|
private enum Content {
|
|
Value1 {
|
|
@Override
|
|
public int method1(Container e) {
|
|
return 0;
|
|
}
|
|
},
|
|
Value2 {
|
|
@Override
|
|
public int method1(Container e) {
|
|
return 0xff000000;
|
|
}
|
|
},
|
|
Value3<caret> {
|
|
@Override
|
|
public void method2(
|
|
Container iconEditor,
|
|
Object g
|
|
) {
|
|
|
|
}
|
|
};
|
|
|
|
public abstract int method1(Container e);
|
|
|
|
public void method2(
|
|
Container iconEditor,
|
|
Object g
|
|
) {
|
|
|
|
}
|
|
}
|
|
|
|
} |