2 * Created on 22-jul-2003
5 package com.quantum.model;
7 import com.quantum.sql.metadata.ObjectMetaData;
10 * Interface for objects that offer metadata support
14 public interface HasMetaData {
15 public ObjectMetaData getMetaData() throws NotConnectedException;
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.
22 public String getQualifiedName();