strangedb/src/test/java/org/warp/jcwdb/utils/SimplestClass.java

21 lines
442 B
Java

package org.warp.jcwdb.utils;
import org.warp.jcwdb.ann.*;
import java.io.IOException;
public class SimplestClass extends DBObject {
@DBField(id = 0, type = DBDataType.BOOLEAN)
public boolean field1;
public SimplestClass(JCWDatabase database) {
super(database);
field1 = true;
}
public SimplestClass(JCWDatabase database, DBObjectIndicesManager.DBObjectInfo objectInfo) throws IOException {
super(database, objectInfo);
}
}