1 19 20 package org.netbeans.modules.dbschema.nodes; 21 22 25 public class TableElementFilter extends SchemaElementFilter { 26 27 public static final int COLUMN = 4; 28 29 public static final int INDEX = 8; 30 31 public static final int FK = 16; 32 33 public static final int COLUMN_PAIR = 32; 34 35 public static final int ALL = SchemaElementFilter.ALL | COLUMN | COLUMN_PAIR | INDEX | FK; 36 37 40 public static final int[] DEFAULT_ORDER = {COLUMN | COLUMN_PAIR | INDEX | FK }; 41 42 43 private boolean sorted = true; 44 45 49 public boolean isSorted () { 50 return sorted; 51 } 52 53 56 public void setSorted (boolean sorted) { 57 this.sorted = sorted; 58 } 59 } 60 | Popular Tags |