2026-03-17 13:31:18 -07:00

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();
}