mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
14 lines
264 B
Java
14 lines
264 B
Java
import java.lang.String;
|
|
|
|
public class ExtBeanWithAccessors {
|
|
private String field;
|
|
|
|
@com.intellij.util.xmlb.annotations.Attribute("param")
|
|
public String getField() {
|
|
return field;
|
|
}
|
|
|
|
public void setField(String field) {
|
|
this.field = field;
|
|
}
|
|
} |