Uses of Class
semorg.sql.tables.Company

Packages that use Company
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 Company in semorg.gui
 

Fields in semorg.gui declared as Company
private  Company CompanyWindow.input
          Holds the data of the actual displayed data record.
 

Methods in semorg.gui with parameters of type Company
private  void CompanyWindow.setInput(Company company)
          Loads a given client 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 Company
CompanyWindow(org.eclipse.swt.widgets.Shell parent, Company input, ForeignKeyConstraintSelector caller)
          Creates an instance of this class, sets the input and finally opens it.
 

Uses of Company in semorg.sql.tables
 

Methods in semorg.sql.tables that return Company
static Company Company.getCompany(int companyId)
          Returns a Company instance for a given company id.
static Company Company.getNext(int lecturerId)
          Returns for a DB-ID the Company instance according to the record which has the next bigger id.
static Company Company.getPrevious(int lecturerId)
          Returns for a DB-ID the Company instance according to the record which has the next smaller id.
 

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