1 17 package org.apache.ws.jaxme.sqls; 18 19 import java.util.Iterator ; 20 21 22 26 public interface Schema { 27 public interface Name extends SQLFactory.Ident { 28 } 29 30 33 public SQLFactory getSQLFactory(); 34 35 37 public Name getName(); 38 39 41 public Table newTable(String pName); 42 43 45 public Table newTable(Table.Name pName); 46 47 50 public Table getTable(Table.Name pName); 51 52 55 public Table getTable(String pName); 56 57 59 public Iterator getTables(); 60 } 61 | Popular Tags |