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() { } public SimplestClass(JCWDatabase database) throws IOException { super(database); } @Override public void initialize() throws IOException { field1 = true; } }