Uses of Interface
de.mguennewig.pobjects.Container

Packages that use Container
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.event The package provides classes to listen to database changes performed over the PObject library. 
de.mguennewig.pobjects.filesystem This package contains a PObjects Container that uses the file system tree as a database table. 
de.mguennewig.pobjects.jdbc This package contains Container implementations that use a JDBC connection. 
de.mguennewig.pobjects.memdb This package contains a simple non-persistent Container implementation that operates only in memory. 
de.mguennewig.pobjform This package contains the PObjForm library, which support Swing dialogs and HTML forms that use the metadata of the PObjects library. 
de.mguennewig.pobjform.html This package contains the HTML form interface of the PObjForm library. 
de.mguennewig.pobjform.swing This package contains the Swing dialog interface of the PObjForm library. 
de.mguennewig.pobjimport The package de.mguennewig.pobjimport provides the classes for a tool named PObjImport which can be used to import and export data from a persistent object database in a database implementation independent way. 
de.mguennewig.pobjsearch This package contains the PObjSearch framework that is based on the PObjForm library. 
 

Uses of Container in de.mguennewig.pobjects
 

Classes in de.mguennewig.pobjects that implement Container
 class AbstractContainer
          Abstract base class for database connections.
 

Methods in de.mguennewig.pobjects that return Container
 Container Query.getContainer()
           
 Container PObject.getContainer()
          Returns the database container to which this object belongs.
 Container AbstractPObjJoin.getContainer()
          Short cut for getParent().getContainer().
 

Methods in de.mguennewig.pobjects with parameters of type Container
static Pclass Pclass.findByName(Container db, java.lang.String tableName)
          Finds the Pclass instance for the given table name.
static Pclass Pclass.findForTable(Container db, ClassDecl te)
          Finds the Pclass instance for the given table.
 

Uses of Container in de.mguennewig.pobjects.event
 

Classes in de.mguennewig.pobjects.event that implement Container
 class ContainerWrapper
          This is a simple wrapper around a database container to notify about (possible) database changes.
 

Methods in de.mguennewig.pobjects.event that return Container
 Container ContainerWrapper.getContainer()
          Returns the wrapped/watched database container.
 

Constructors in de.mguennewig.pobjects.event with parameters of type Container
ContainerWrapper(Container db)
          Creates a new ContainerWrapper.
 

Uses of Container in de.mguennewig.pobjects.filesystem
 

Classes in de.mguennewig.pobjects.filesystem that implement Container
 class FileSystemContainer
          A file system container maps the file system tree into one table.
 

Uses of Container in de.mguennewig.pobjects.jdbc
 

Classes in de.mguennewig.pobjects.jdbc that implement Container
 class JdbcContainer
          Common base class for standard JDBC based database connections.
 class MySQLContainer
          Container implementation for MySQL databases.
 class OracleContainer
          Container implementation for Oracle databases.
 class PostgreSQLContainer
          Container implementation for PostgreSQL databases.
 class SQLiteContainer
          Container implementation for SQLite3 databases.
 class SqlServerContainer
          Container implementation for MS-SQL Server databases.
 

Uses of Container in de.mguennewig.pobjects.memdb
 

Classes in de.mguennewig.pobjects.memdb that implement Container
 class MemoryContainer
          A simple object container that simulates a database, but stores everything in memory.
 

Constructors in de.mguennewig.pobjects.memdb with parameters of type Container
PredicateQuery(Container db)
          Creates a new empty query.
 

Uses of Container in de.mguennewig.pobjform
 

Methods in de.mguennewig.pobjform that return Container
 Container PObjForm.getContainer()
          Returns the database connection which the form uses.
 Container FormElement.getContainer()
          Returns the database connection.
 Container AbstractPObjForm.getContainer()
          Returns the database connection which the form uses.
 Container AbstractFormElement.getContainer()
          Returns the database connection.
 

Methods in de.mguennewig.pobjform with parameters of type Container
static PObject ReferenceModel.fromString(Container db, ClassDecl cd, java.lang.String v)
          Returns a database object for the given value string.
 void PObjForm.setContainer(Container container)
           
 void AbstractPObjForm.setContainer(Container container)
          
 

Constructors in de.mguennewig.pobjform with parameters of type Container
AbstractPObjForm(Container container)
          Creates a new PObject-enhanced form.
 

Uses of Container in de.mguennewig.pobjform.html
 

Constructors in de.mguennewig.pobjform.html with parameters of type Container
PObjHtmlForm(Container db)
          Creates a new PObject-enhanced HTML form with initialized elements.
 

Uses of Container in de.mguennewig.pobjform.swing
 

Constructors in de.mguennewig.pobjform.swing with parameters of type Container
PObjSwingForm(Container db)
          Creates a new PObject-enhanced Swing based form/dialog.
 

Uses of Container in de.mguennewig.pobjimport
 

Methods in de.mguennewig.pobjimport that return Container
 Container ParameterFile.getContainer()
           
 

Constructors in de.mguennewig.pobjimport with parameters of type Container
Exporter(Container db)
          Creates a new Exporter.
Importer(Container db)
          Creates a new Importer.
 

Uses of Container in de.mguennewig.pobjsearch
 

Methods in de.mguennewig.pobjsearch that return Container
 Container SwingSearchPanel.getContainer()
          
 Container SearchPanel.getContainer()
           
 Container HtmlSearchPanel.getContainer()
          
 

Methods in de.mguennewig.pobjsearch with parameters of type Container
 void SwingSearchPanel.setContainer(Container db)
          
 void SearchPanel.setContainer(Container db)
           
 void HtmlSearchPanel.setContainer(Container db)
          
 

Constructors in de.mguennewig.pobjsearch with parameters of type Container
HtmlSearchForm(Container db)
          Creates a new SearchForm.
HtmlSearchPanel(Container db, SearchModel searchModel, java.lang.String queryPrefix)
           
SwingSearchForm(Container db)
          Creates a new SearchForm.
SwingSearchPanel(java.util.ResourceBundle bundle, Container db, SearchModel searchModel)