01: package net.sourceforge.squirrel_sql.client.gui.db;
02:
03: import java.io.Serializable;
04:
05: /**
06: * new SchemaLoadInfo(<all types that may be cached>) creates an object that says: load everything
07: */
08: public class SchemaLoadInfo implements Serializable {
09: public SchemaLoadInfo(String[] tableTypes) {
10: this .tableTypes = tableTypes;
11: }
12:
13: /**
14: * null means load all Schemas
15: */
16: public String schemaName;
17:
18: /**
19: * null means load all types.
20: * Should not be set to null because of the enormous
21: * amount of Synonyms Oracle provides.
22: */
23: public String[] tableTypes;
24:
25: public boolean loadProcedures = true;
26: }
|