initial quantum version
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / model / HasMetaData.java
1 /*
2  * Created on 22-jul-2003
3  *
4  */
5 package com.quantum.model;
6
7 import com.quantum.sql.metadata.ObjectMetaData;
8
9 /**
10  * Interface for objects that offer metadata support
11  * @author panic
12  *
13  */
14 public interface HasMetaData {
15         public ObjectMetaData getMetaData() throws NotConnectedException;
16         /**
17          * Returns a String with the qualified name of the Entity.
18          * That is, "schema.name". The difference with getConQualifiedName() 
19          * is that the schema is always present if the database supports schemas.
20          * @return
21          */
22         public String getQualifiedName();
23
24 }