Uses of Class
semorg.sql.tables.Presentation

Packages that use Presentation
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 Presentation in semorg.sql.tables
 

Subclasses of Presentation in semorg.sql.tables
 class CompanyInternalPresentation
          This class models a company internal presentation.
 class PublicPresentation
          Models a public presentation.
 

Methods in semorg.sql.tables that return Presentation
static Presentation Presentation.getPresentation(int presentationId)
          Returns for given id the corresponding Presentation object.
 

Methods in semorg.sql.tables that return types with arguments of type Presentation
static DistinctVector<Presentation> Presentation.getPresentationVectorFromDB(Vector<DBConstraint> additionalConstraints, String sortString)
          Creates a PreparedStatement instance with the given parameters, executes the query and returns a vector of Presentation instances corresponding to the ResultSet of the query.
static DistinctVector<Presentation> Presentation.getPresForSemType(int semTypeId)
          Returns all presentations which possess the given seminartype.
static DistinctVector<Presentation> Presentation.getPresInstructedBy(int lecturerId)
          Returns all presentations which are instructed by a lecturer corresponding to the given id.
static DistinctVector<Presentation> Presentation.getPresSupervisedBy(int lecturerId)
          Returns all presentations which are supervised by a lecturer corresponding to the given id.
private static DistinctVector<Presentation> Presentation.getVector(ResultSet resultSet)
          Creates for each element in a given ResultSet instance an instance of this class and returns a vector with the resulting class objects.