1 19 20 package org.netbeans.modules.dbschema; 21 22 24 public interface ColumnElementHolder { 25 29 public void addColumn (ColumnElement el) throws Exception ; 30 31 35 public void addColumns (ColumnElement[] els) throws Exception ; 36 37 41 public void removeColumn (ColumnElement el) throws Exception ; 42 43 47 public void removeColumns (ColumnElement[] els) throws Exception ; 48 49 54 public void setColumns (ColumnElement[] els) throws Exception ; 55 56 59 public ColumnElement[] getColumns (); 60 61 65 public ColumnElement getColumn (DBIdentifier name); 66 } 67 | Popular Tags |