updating SQL plugin with latest Quantum code
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.sql / src / net / sourceforge / phpdt / sql / model / Entity.java
1 package net.sourceforge.phpdt.sql.model;
2
3 /**
4  * @author BC
5  */
6 public interface Entity {
7     public String getName();
8     public String getSchema();
9     public String getType();
10     public String getQualifiedName();
11 }