Uses of Class
semorg.sql.tables.Associate

Packages that use Associate
semorg.gui Provides SWT based classes modelling editing windows for creating new or change existing data records (graphics user interface layer). 
semorg.sql.tables This package implements the object relational mapping between the relational data model (the tables) and the object oriented data model (the objects within this package). 
 

Uses of Associate in semorg.gui
 

Fields in semorg.gui declared as Associate
private  Associate AssociateWindow.input
          Holds the data of the actual displayed associate record.
 

Methods in semorg.gui with parameters of type Associate
private  void AssociateWindow.setInput(Associate associate)
          Loads a given associate record into the window form of initialize the elements of the form the empty string/null if no data is given.
 

Constructors in semorg.gui with parameters of type Associate
AssociateWindow(org.eclipse.swt.widgets.Shell parent, Associate input)
          Creates an instance of this class, sets the input and finally opens it.
 

Uses of Associate in semorg.sql.tables
 

Methods in semorg.sql.tables that return Associate
static Associate Associate.getNext(int associateId)
          Returns for a DB-ID the Associate instance according to the record which has the next bigger id.
static Associate Associate.getPrevious(int associateId)
          Returns for a DB-ID the Associate instance according to the record which has the next smaller id.
 

Methods in semorg.sql.tables that return types with arguments of type Associate
private static DistinctVector<Associate> Associate.getVector(ResultSet resultSet)
          Creates for each element in a given ResultSet instance an Associate object and returns a vector with the created Associate instances.
static DistinctVector<Associate> Associate.getVectorFromDB(Vector<DBConstraint> additionalConstraints, String sortString)
          Creates a PreparedStatement instance with the given parameters, executes the query and returns a vector of Associate instances corresponding to the ResultSet of the query.