14 lines
229 B
Java
14 lines
229 B
Java
package javax.baja.sys;
|
|
|
|
public interface Property extends Slot {
|
|
BValue getDefaultValue();
|
|
|
|
Type getType();
|
|
|
|
int getTypeAccess();
|
|
|
|
boolean isEquivalentToDefaultValue(BValue bValue);
|
|
|
|
boolean isTypeFinal();
|
|
}
|