package binky.reportrunner.ui.actions.general.metadata; public class Meta { private Type[] types = new Type[]{ new Type("SUGGEST", "CHAR", operators), new Type("TEXT", "NUMERIC", operators), new Type("TEXT", "INTEGER", operators), new Type("TEXT", "DECIMAL", operators), new Type("TEXT", "SMALLINT", operators), new Type("TEXT", "BOOLEAN", new Operator[]{new Operator("=", "is", "ONE")}) }; private static final Operator[] operators = new Operator[]{ new Operator("=", "is", "ONE"), new Operator("<>", "is not", "ONE"), new Operator(">", "greater than", "ONE"), new Operator("less than", "<", "ONE"), new Operator("LIKE", "like", "ONE"), }; private Table[] tables; public Type[] getTypes() { return types; } public void setTypes(Type[] types) { this.types = types; } public Table[] getTables() { return tables; } public void setTables(Table[] tables) { this.tables = tables; } }