1 19 20 package org.netbeans.modules.dbschema; 21 22 24 public interface ColumnPairElementHolder { 25 29 public void addColumnPair (ColumnPairElement pair) throws Exception ; 30 31 35 public void addColumnPairs (ColumnPairElement[] pairs) throws Exception ; 36 37 41 public void removeColumnPair (ColumnPairElement pair) throws Exception ; 42 43 47 public void removeColumnPairs (ColumnPairElement[] pairs) throws Exception ; 48 49 54 public void setColumnPairs (ColumnPairElement[] pairs) throws Exception ; 55 56 59 public ColumnPairElement[] getColumnPairs (); 60 61 65 public ColumnPairElement getColumnPair (DBIdentifier name); 66 } 67 | Popular Tags |