mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
13 lines
213 B
Java
13 lines
213 B
Java
package test;
|
|
|
|
public class JavaClass {
|
|
public int field = 0;
|
|
|
|
protected int myProperty = 0;
|
|
|
|
public int getProperty() {
|
|
return myProperty;
|
|
}
|
|
|
|
public static final String NAME = "Bar";
|
|
} |