Uses of Class
semorg.sql.tables.CompanyBooking

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

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

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

Uses of CompanyBooking in semorg.sql.tables
 

Methods in semorg.sql.tables that return CompanyBooking
static CompanyBooking CompanyBooking.getCompanyBooking(int bookingId)
          Returns a CompanyBooking instance for a given id of a companybooking record.
static CompanyBooking CompanyBooking.getNext(int currentId)
          Returns for a DB-ID the CompanyBooking instance according to the record which has the next bigger id.
static CompanyBooking CompanyBooking.getPrevious(int currentId)
          Returns for a DB-ID the CompanyBooking instance according to the record which has the next smaller id.
 

Methods in semorg.sql.tables that return types with arguments of type CompanyBooking
static DistinctVector<CompanyBooking> CompanyBooking.getBookingsForPresentation(int presentationId)
          Returns all bookings for a presentation for a given presentation id.
static DistinctVector<CompanyBooking> CompanyBooking.getBookingsOfCompany(int companyId)
          Returns all bookings of a company according to the given compony id.
private static DistinctVector<CompanyBooking> CompanyBooking.getVector(ResultSet resultSet)
          Creates for each element in a given ResultSet instance an CompanyBooking object and returns a vector with the resulting CompanyBooking instances.
static DistinctVector<CompanyBooking> CompanyBooking.getVectorFromDB(Vector<DBConstraint> additionalConstraints, String sortString)
          Creates a PreparedStatement instance with the given parameters, executes the query and returns a vector of CompanyBooking instances corresponding to the ResultSet of the query.