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

39 lines
631 B
Java

/*
* Decompiled with CFR 0.152.
*/
package com.tridium.util;
import javax.baja.sys.BObject;
import javax.baja.sys.Context;
import javax.baja.sys.Cursor;
public class EmptyCursor
implements Cursor {
private Context context;
public BObject get() {
return null;
}
public Context getContext() {
return this.context;
}
public boolean next() {
return false;
}
public boolean next(Class clazz) {
return false;
}
public boolean nextComponent() {
return false;
}
public EmptyCursor(Context context) {
this.context = context;
}
}