51 lines
1.0 KiB
Java
51 lines
1.0 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.sys;
|
|
|
|
import javax.baja.sys.Action;
|
|
import javax.baja.sys.BFacets;
|
|
import javax.baja.sys.Context;
|
|
import javax.baja.sys.Property;
|
|
import javax.baja.sys.Topic;
|
|
import javax.baja.sys.Type;
|
|
|
|
public interface Slot {
|
|
public static final int BOOLEAN_TYPE = 0;
|
|
public static final int INT_TYPE = 2;
|
|
public static final int LONG_TYPE = 3;
|
|
public static final int FLOAT_TYPE = 4;
|
|
public static final int DOUBLE_TYPE = 5;
|
|
public static final int STRING_TYPE = 6;
|
|
public static final int BOBJECT_TYPE = 7;
|
|
|
|
public Type getDeclaringType();
|
|
|
|
public String getName();
|
|
|
|
public String getDefaultDisplayName(Context var1);
|
|
|
|
public boolean isFrozen();
|
|
|
|
public boolean isDynamic();
|
|
|
|
public boolean isProperty();
|
|
|
|
public boolean isAction();
|
|
|
|
public boolean isTopic();
|
|
|
|
public Property asProperty();
|
|
|
|
public Action asAction();
|
|
|
|
public Topic asTopic();
|
|
|
|
public BFacets getFacets();
|
|
|
|
public boolean equals(Object var1);
|
|
|
|
public int getDefaultFlags();
|
|
}
|
|
|