39 lines
631 B
Java
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;
|
|
}
|
|
}
|
|
|