40 lines
755 B
Java
40 lines
755 B
Java
package javax.baja.sys;
|
|
|
|
public interface Slot {
|
|
public static final int BOBJECT_TYPE = 7;
|
|
public static final int BOOLEAN_TYPE = 0;
|
|
public static final int DOUBLE_TYPE = 5;
|
|
public static final int FLOAT_TYPE = 4;
|
|
public static final int INT_TYPE = 2;
|
|
public static final int LONG_TYPE = 3;
|
|
public static final int STRING_TYPE = 6;
|
|
|
|
Action asAction();
|
|
|
|
Property asProperty();
|
|
|
|
Topic asTopic();
|
|
|
|
boolean equals(Object obj);
|
|
|
|
Type getDeclaringType();
|
|
|
|
String getDefaultDisplayName(Context context);
|
|
|
|
int getDefaultFlags();
|
|
|
|
BFacets getFacets();
|
|
|
|
String getName();
|
|
|
|
boolean isAction();
|
|
|
|
boolean isDynamic();
|
|
|
|
boolean isFrozen();
|
|
|
|
boolean isProperty();
|
|
|
|
boolean isTopic();
|
|
}
|