94 lines
2.3 KiB
Java
94 lines
2.3 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.sys;
|
|
|
|
import javax.baja.sys.BComplex;
|
|
import javax.baja.sys.BFacets;
|
|
import javax.baja.sys.BInterface;
|
|
import javax.baja.sys.BValue;
|
|
import javax.baja.sys.Context;
|
|
import javax.baja.sys.Property;
|
|
import javax.baja.sys.Slot;
|
|
import javax.baja.sys.SlotCursor;
|
|
import javax.baja.sys.Sys;
|
|
import javax.baja.sys.Type;
|
|
|
|
public interface BIPropertyContainer
|
|
extends BInterface {
|
|
public static final Type TYPE;
|
|
|
|
public String getDisplayName(Context var1);
|
|
|
|
public String getDisplayName(Slot var1, Context var2);
|
|
|
|
public BFacets getSlotFacets(Slot var1);
|
|
|
|
public String propertyValueToString(Property var1, Context var2);
|
|
|
|
public Slot getSlot(String var1);
|
|
|
|
public Property getProperty(String var1);
|
|
|
|
public int getSlotCount();
|
|
|
|
public int getSlotCount(Class var1);
|
|
|
|
public Slot[] getSlotsArray();
|
|
|
|
public SlotCursor getSlots();
|
|
|
|
public Property[] getPropertiesArray();
|
|
|
|
public Property[] getFrozenPropertiesArray();
|
|
|
|
public Property[] getDynamicPropertiesArray();
|
|
|
|
public SlotCursor getProperties();
|
|
|
|
public BComplex loadSlots();
|
|
|
|
public void lease();
|
|
|
|
public void lease(int var1, long var2);
|
|
|
|
public BValue get(Property var1);
|
|
|
|
public BValue get(String var1);
|
|
|
|
public void set(Property var1, BValue var2, Context var3);
|
|
|
|
public void set(String var1, BValue var2);
|
|
|
|
public int getFlags(Slot var1);
|
|
|
|
public void setFlags(Slot var1, int var2, Context var3);
|
|
|
|
public Property add(String var1, BValue var2, int var3, BFacets var4, Context var5);
|
|
|
|
public void remove(String var1, Context var2);
|
|
|
|
public void remove(Property var1, Context var2);
|
|
|
|
public void removeAll(Context var1);
|
|
|
|
public void rename(Property var1, String var2, Context var3);
|
|
|
|
public void setFacets(Slot var1, BFacets var2, Context var3);
|
|
|
|
public void reorder(Property[] var1, Context var2);
|
|
|
|
public void reorderToTop(Property var1, Context var2);
|
|
|
|
public void reorderToBottom(Property var1, Context var2);
|
|
|
|
static {
|
|
Class clazz = 1.class$javax$baja$sys$BIPropertyContainer;
|
|
if (clazz == null) {
|
|
clazz = 1.class$javax$baja$sys$BIPropertyContainer = 1.class("[Ljavax.baja.sys.BIPropertyContainer;", false);
|
|
}
|
|
TYPE = Sys.loadType(clazz);
|
|
}
|
|
}
|
|
|