link start!
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.collection;
|
||||
|
||||
import javax.baja.collection.BIList;
|
||||
import javax.baja.collection.BITable;
|
||||
import javax.baja.sys.BInterface;
|
||||
import javax.baja.sys.Cursor;
|
||||
import javax.baja.sys.Sys;
|
||||
import javax.baja.sys.Type;
|
||||
import javax.baja.util.IFilter;
|
||||
|
||||
public interface BICollection
|
||||
extends BInterface {
|
||||
public static final Type TYPE;
|
||||
|
||||
public Cursor cursor();
|
||||
|
||||
public BIList toList() throws UnsupportedOperationException;
|
||||
|
||||
public BITable toTable() throws UnsupportedOperationException;
|
||||
|
||||
public BICollection filter(IFilter var1);
|
||||
|
||||
static {
|
||||
Class clazz = 1.class$javax$baja$collection$BICollection;
|
||||
if (clazz == null) {
|
||||
clazz = 1.class$javax$baja$collection$BICollection = 1.class("[Ljavax.baja.collection.BICollection;", false);
|
||||
}
|
||||
TYPE = Sys.loadType(clazz);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.collection;
|
||||
|
||||
import javax.baja.collection.BICollection;
|
||||
import javax.baja.sys.BObject;
|
||||
import javax.baja.sys.Sys;
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface BIList
|
||||
extends BICollection {
|
||||
public static final Type TYPE;
|
||||
|
||||
public int size();
|
||||
|
||||
public BObject[] list();
|
||||
|
||||
public BObject[] list(BObject[] var1);
|
||||
|
||||
public BObject get(int var1);
|
||||
|
||||
static {
|
||||
Class clazz = 1.class$javax$baja$collection$BIList;
|
||||
if (clazz == null) {
|
||||
clazz = 1.class$javax$baja$collection$BIList = 1.class("[Ljavax.baja.collection.BIList;", false);
|
||||
}
|
||||
TYPE = Sys.loadType(clazz);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.collection;
|
||||
|
||||
import javax.baja.collection.BIList;
|
||||
import javax.baja.collection.Column;
|
||||
import javax.baja.collection.ColumnList;
|
||||
import javax.baja.sys.BFacets;
|
||||
import javax.baja.sys.BObject;
|
||||
import javax.baja.sys.Sys;
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface BITable
|
||||
extends BIList {
|
||||
public static final Type TYPE;
|
||||
|
||||
public ColumnList getColumns();
|
||||
|
||||
public BObject get(int var1, Column var2);
|
||||
|
||||
public String getString(int var1, Column var2);
|
||||
|
||||
public float getFloat(int var1, Column var2);
|
||||
|
||||
public double getDouble(int var1, Column var2);
|
||||
|
||||
public int getInt(int var1, Column var2);
|
||||
|
||||
public long getLong(int var1, Column var2);
|
||||
|
||||
public boolean getBoolean(int var1, Column var2);
|
||||
|
||||
public int getFlags(int var1, Column var2);
|
||||
|
||||
public BFacets getFacets(int var1, Column var2);
|
||||
|
||||
public BFacets getTableFacets();
|
||||
|
||||
static {
|
||||
Class clazz = 1.class$javax$baja$collection$BITable;
|
||||
if (clazz == null) {
|
||||
clazz = 1.class$javax$baja$collection$BITable = 1.class("[Ljavax.baja.collection.BITable;", false);
|
||||
}
|
||||
TYPE = Sys.loadType(clazz);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.collection;
|
||||
|
||||
import javax.baja.sys.BFacets;
|
||||
import javax.baja.sys.Context;
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface Column {
|
||||
public String getName();
|
||||
|
||||
public String getDisplayName(Context var1);
|
||||
|
||||
public Type getType();
|
||||
|
||||
public int getFlags();
|
||||
|
||||
public BFacets getFacets();
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.collection;
|
||||
|
||||
import javax.baja.collection.Column;
|
||||
|
||||
public interface ColumnList {
|
||||
public int size();
|
||||
|
||||
public Column get(int var1);
|
||||
|
||||
public Column get(String var1);
|
||||
|
||||
public int indexOf(String var1);
|
||||
|
||||
public Column[] list();
|
||||
}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.collection;
|
||||
|
||||
import javax.baja.collection.BITable;
|
||||
import javax.baja.collection.Column;
|
||||
import javax.baja.sys.BFacets;
|
||||
import javax.baja.sys.BObject;
|
||||
import javax.baja.sys.Cursor;
|
||||
|
||||
public interface TableCursor
|
||||
extends Cursor {
|
||||
public BITable getTable();
|
||||
|
||||
public BObject get(Column var1);
|
||||
|
||||
public String getString(Column var1);
|
||||
|
||||
public float getFloat(Column var1);
|
||||
|
||||
public double getDouble(Column var1);
|
||||
|
||||
public int getInt(Column var1);
|
||||
|
||||
public long getLong(Column var1);
|
||||
|
||||
public boolean getBoolean(Column var1);
|
||||
|
||||
public int getFlags(Column var1);
|
||||
|
||||
public BFacets getFacets(Column var1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user