Uses of Interface
de.mguennewig.pobjects.metadata.SqlEntity

Packages that use SqlEntity
de.mguennewig.pobjects The package de.mguennewig.pobjects provides an abstraction layer on top of a set of database tables by which table rows can be accessed transparently as Java objects. 
de.mguennewig.pobjects.metadata This package contains the metadata classes used by the PObject library. 
 

Uses of SqlEntity in de.mguennewig.pobjects
 

Classes in de.mguennewig.pobjects that implement SqlEntity
 class DynamicSelectExpr
          A dynamically created SELECT expression.
 

Methods in de.mguennewig.pobjects with parameters of type SqlEntity
 java.lang.String Container.getQualifiedName(SqlEntity entity)
          Returns the qualified name for the given SQL entity.
 java.lang.String AbstractContainer.getQualifiedName(SqlEntity entity)
          Returns the qualified name for the given SQL entity.
 

Uses of SqlEntity in de.mguennewig.pobjects.metadata
 

Classes in de.mguennewig.pobjects.metadata that implement SqlEntity
 class ClassDecl
          A class declaration describes both an application class and an SQL table.
 class SelectExpr
          A select expression defines an SQL `SELECT' statement, together with meta information about the statement that enables pobjects to manipulate and execute it.
 class Sequence
          Provides the parameters needed to maintain an automatically generated primary key for the table rows.
 class TableExpr
          Abstract base class for all table expressions.
 class ViewDecl
          A variant of a select expression that is translated into a CREATE VIEW definition.