30 lines
373 B
Java
30 lines
373 B
Java
package javax.baja.sys;
|
|
|
|
public interface SlotCursor extends Cursor {
|
|
Action action();
|
|
|
|
boolean getBoolean();
|
|
|
|
double getDouble();
|
|
|
|
float getFloat();
|
|
|
|
int getInt();
|
|
|
|
long getLong();
|
|
|
|
String getString();
|
|
|
|
int getTypeAccess();
|
|
|
|
boolean nextObject();
|
|
|
|
Property property();
|
|
|
|
Slot slot();
|
|
|
|
BObject target();
|
|
|
|
Topic topic();
|
|
}
|