Index

Package: com.pavelvlasov.jsel.impl.sql

Class Engine

Methods
MethodDescription
public void <init>( com.pavelvlasov.sql.SQLProcessor processor ) Constructor
public int cleanupType( String p1, int p2 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes types belonging to orphan compilation units. Parameters: repository, scan.
public int deleteCallTrace( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from CALL_TRACE
public int deleteCallTrace( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from CALL_TRACE
public int deleteCallTraceByCallee( Integer Callee )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public int deleteCallTraceByCaller( int Caller )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public int deleteCompilationUnit( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from COMPILATION_UNIT
public int deleteCompilationUnit( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from COMPILATION_UNIT
public int deleteCompilationUnitScan( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from COMPILATION_UNIT_SCAN
public int deleteCompilationUnitScan( String Repository, int ScanId, int CompilationUnitId )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from COMPILATION_UNIT_SCAN
public int deleteField( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from FIELD
public int deleteField( int CompilationUnitId, int DeclaringType, String Name )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from FIELD
public int deleteFieldByType( int CompilationUnitId, int DeclaringType )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public int deleteInterface( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from INTERFACE
public int deleteInterface( int CompilationUnitId, int DeclaringType, int InterfaceName )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from INTERFACE
public int deleteInterfaceByType( int CompilationUnitId, int DeclaringType )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public int deleteMessage( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from MESSAGE
public int deleteMessage( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from MESSAGE
public int deleteOldScans( String p1, int p2 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes old scans from repository. Parameters: repository, scan
public int deleteOperation( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from OPERATION
public int deleteOperation( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from OPERATION
public int deleteOperationByType( int CompilationUnitId, int DeclaringType )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public int deleteOrphanCompilationUnits( String p1 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes orphan compilation units for repository. Parameters: repository
public int deleteOverride( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from OVERRIDE
public int deleteOverride( int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from OVERRIDE
public int deleteOverrideBySpecification( int Specification )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public int deletePackage( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from PACKAGE
public int deletePackage( String Repository, int NameId )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from PACKAGE
public int deletePrimaryKey( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from PRIMARY_KEY
public int deletePrimaryKey( String KeyName )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from PRIMARY_KEY
public int deleteRepository( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from REPOSITORY
public int deleteRepository( String Name )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from REPOSITORY
public int deleteScan( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from SCAN
public int deleteScan( String Repository, int Id )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from SCAN
public int deleteType( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from TYPE
public int deleteType( int CompilationUnitId, int Name )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from TYPE
public int deleteTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public int deleteTypeByName( int Name )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public int deleteTypeDependency( )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes all records from TYPE_DEPENDENCY
public int deleteTypeDependency( int SupplierName, int ClientCuId, int ClientName )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Deletes by primary key from TYPE_DEPENDENCY
public java.util.Collection getCallTrace( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. Selects all rows from CALL_TRACE
public java.util.Collection getCallTrace( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. If converter is not null then elements will be results of conversion.Selects all rows from CALL_TRACE
public java.util.Collection getCallTrace( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. If targetClass is not null then elements will be of targetClass typeSelects all rows from CALL_TRACE
public java.util.Collection getCallTrace( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. Selects all rows from CALL_TRACE
public java.util.Collection getCallTrace( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from CALL_TRACE
public java.util.Collection getCallTrace( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from CALL_TRACE
public CallTrace getCallTrace( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from CALL_TRACE
public CallTrace getCallTrace( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from CALL_TRACE
public java.util.Collection getCallTraceByCallee( Integer Callee ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. Selects rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public java.util.Collection getCallTraceByCallee( Integer Callee, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. If converter is not null then elements will be results of conversion.Selects rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public java.util.Collection getCallTraceByCallee( Integer Callee, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. If targetClass is not null then elements will be of targetClass typeSelects rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public java.util.Collection getCallTraceByCallee( Integer Callee, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. Selects rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public java.util.Collection getCallTraceByCallee( Integer Callee, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public java.util.Collection getCallTraceByCallee( Integer Callee, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public java.util.Collection getCallTraceByCaller( int Caller ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. Selects rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public java.util.Collection getCallTraceByCaller( int Caller, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. If converter is not null then elements will be results of conversion.Selects rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public java.util.Collection getCallTraceByCaller( int Caller, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace. If targetClass is not null then elements will be of targetClass typeSelects rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public java.util.Collection getCallTraceByCaller( int Caller, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. Selects rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public java.util.Collection getCallTraceByCaller( int Caller, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public java.util.Collection getCallTraceByCaller( int Caller, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CallTrace and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public int getCheckRepositoryName( String p1 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row.
public java.util.Collection getClientCardinality( String p1, int p2, int p3 ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. Parameters: repository, scan
public java.util.Collection getClientCardinality( String p1, int p2, int p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. If converter is not null then elements will be results of conversion.Parameters: repository, scan
public java.util.Collection getClientCardinality( String p1, int p2, int p3, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. If targetClass is not null then elements will be of targetClass typeParameters: repository, scan
public java.util.Collection getClientCardinality( String p1, int p2, int p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. Parameters: repository, scan
public java.util.Collection getClientCardinality( String p1, int p2, int p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. If converter is not null then elements will be results of conversion. Parameters: repository, scan
public java.util.Collection getClientCardinality( String p1, int p2, int p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. If targetClass is not null then elements will be of targetClass type. Parameters: repository, scan
public java.util.Collection getCompilationUnit( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit. Selects all rows from COMPILATION_UNIT
public java.util.Collection getCompilationUnit( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit. If converter is not null then elements will be results of conversion.Selects all rows from COMPILATION_UNIT
public java.util.Collection getCompilationUnit( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit. If targetClass is not null then elements will be of targetClass typeSelects all rows from COMPILATION_UNIT
public java.util.Collection getCompilationUnit( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit and returns populated collection. Selects all rows from COMPILATION_UNIT
public java.util.Collection getCompilationUnit( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from COMPILATION_UNIT
public java.util.Collection getCompilationUnit( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from COMPILATION_UNIT
public CompilationUnit getCompilationUnit( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from COMPILATION_UNIT
public CompilationUnit getCompilationUnit( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from COMPILATION_UNIT
public CompilationUnitByPackageAndName getCompilationUnitByPackageAndName( String p1, int p2, int p3, String p4 )  throws java.sql.SQLExceptionExecutes query and returns single object. Parameters: repository, package, scan number, compilation unit name
public CompilationUnitByPackageAndName getCompilationUnitByPackageAndName( String p1, int p2, int p3, String p4, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Parameters: repository, package, scan number, compilation unit name
public CompilationUnitByPackageAndName getCompilationUnitByPackageAndType( String p1, int p2, int p3, int p4 )  throws java.sql.SQLExceptionExecutes query and returns single object.
public CompilationUnitByPackageAndName getCompilationUnitByPackageAndType( String p1, int p2, int p3, int p4, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible.
public Number getCompilationUnitByPathSizeAndCheckSum( String p1, int p2, String p3, long p4, long p5 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row. Parameters: Repository, Package Id, Path, Size, CheckSum
public java.util.Collection getCompilationUnitByStoreLevel( String p1, short p2, int p3 ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName.
public java.util.Collection getCompilationUnitByStoreLevel( String p1, short p2, int p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName. If converter is not null then elements will be results of conversion.
public java.util.Collection getCompilationUnitByStoreLevel( String p1, short p2, int p3, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName. If targetClass is not null then elements will be of targetClass type
public java.util.Collection getCompilationUnitByStoreLevel( String p1, short p2, int p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName and returns populated collection.
public java.util.Collection getCompilationUnitByStoreLevel( String p1, short p2, int p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName and returns populated collection. If converter is not null then elements will be results of conversion.
public java.util.Collection getCompilationUnitByStoreLevel( String p1, short p2, int p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName and returns populated collection. If targetClass is not null then elements will be of targetClass type.
public java.util.Collection getCompilationUnitByTypeStoreLevel( String p1, int p2, short p3 ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName.
public java.util.Collection getCompilationUnitByTypeStoreLevel( String p1, int p2, short p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName. If converter is not null then elements will be results of conversion.
public java.util.Collection getCompilationUnitByTypeStoreLevel( String p1, int p2, short p3, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName. If targetClass is not null then elements will be of targetClass type
public java.util.Collection getCompilationUnitByTypeStoreLevel( String p1, int p2, short p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName and returns populated collection.
public java.util.Collection getCompilationUnitByTypeStoreLevel( String p1, int p2, short p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName and returns populated collection. If converter is not null then elements will be results of conversion.
public java.util.Collection getCompilationUnitByTypeStoreLevel( String p1, int p2, short p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitByPackageAndName and returns populated collection. If targetClass is not null then elements will be of targetClass type.
public java.util.Collection getCompilationUnitScan( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitScan. Selects all rows from COMPILATION_UNIT_SCAN
public java.util.Collection getCompilationUnitScan( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitScan. If converter is not null then elements will be results of conversion.Selects all rows from COMPILATION_UNIT_SCAN
public java.util.Collection getCompilationUnitScan( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitScan. If targetClass is not null then elements will be of targetClass typeSelects all rows from COMPILATION_UNIT_SCAN
public java.util.Collection getCompilationUnitScan( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitScan and returns populated collection. Selects all rows from COMPILATION_UNIT_SCAN
public java.util.Collection getCompilationUnitScan( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitScan and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from COMPILATION_UNIT_SCAN
public java.util.Collection getCompilationUnitScan( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnitScan and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from COMPILATION_UNIT_SCAN
public CompilationUnitScan getCompilationUnitScan( String Repository, int ScanId, int CompilationUnitId )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from COMPILATION_UNIT_SCAN
public CompilationUnitScan getCompilationUnitScan( String Repository, int ScanId, int CompilationUnitId, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from COMPILATION_UNIT_SCAN
public CompilationUnitByPackageAndName getCompilationUnitWithType( String p1, int p2, int p3 )  throws java.sql.SQLExceptionExecutes query and returns single object.
public CompilationUnitByPackageAndName getCompilationUnitWithType( String p1, int p2, int p3, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible.
public java.util.Collection getExternalClientCardinality( String p1, int p2, int p3 ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. Parameters: repository, scan, package
public java.util.Collection getExternalClientCardinality( String p1, int p2, int p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. If converter is not null then elements will be results of conversion.Parameters: repository, scan, package
public java.util.Collection getExternalClientCardinality( String p1, int p2, int p3, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. If targetClass is not null then elements will be of targetClass typeParameters: repository, scan, package
public java.util.Collection getExternalClientCardinality( String p1, int p2, int p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. Parameters: repository, scan, package
public java.util.Collection getExternalClientCardinality( String p1, int p2, int p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. If converter is not null then elements will be results of conversion. Parameters: repository, scan, package
public java.util.Collection getExternalClientCardinality( String p1, int p2, int p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. If targetClass is not null then elements will be of targetClass type. Parameters: repository, scan, package
public java.util.Collection getExternalClientCardinality( String p1, int p2 ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. Parameters: repository, scan
public java.util.Collection getExternalClientCardinality( String p1, int p2, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. If converter is not null then elements will be results of conversion.Parameters: repository, scan
public java.util.Collection getExternalClientCardinality( String p1, int p2, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality. If targetClass is not null then elements will be of targetClass typeParameters: repository, scan
public java.util.Collection getExternalClientCardinality( String p1, int p2, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. Parameters: repository, scan
public java.util.Collection getExternalClientCardinality( String p1, int p2, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. If converter is not null then elements will be results of conversion. Parameters: repository, scan
public java.util.Collection getExternalClientCardinality( String p1, int p2, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.ClientCardinality and returns populated collection. If targetClass is not null then elements will be of targetClass type. Parameters: repository, scan
public java.util.Collection getExternalSupplierClients( String p1, int p2, int p3 ) Executes query, returns database backed collection with elements of type of the first column. Parameters: repository, scan, package name
public java.util.Collection getExternalSupplierClients( String p1, int p2, int p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type of the first column. If converter is not null then it converts elements. Parameters: repository, scan, package name
public java.util.Collection getExternalSupplierClients( String p1, int p2, int p3, Class targetClass ) Executes query, returns database backed collection with elements of type of the first column. If target class is not null then elements are instances of target class created from the first column values. Parameters: repository, scan, package name
public java.util.Collection getExternalSupplierClients( String p1, int p2, int p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Parameters: repository, scan, package name
public java.util.Collection getExternalSupplierClients( String p1, int p2, int p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Elements get converted by the converter if it is not null.Parameters: repository, scan, package name
public java.util.Collection getExternalSupplierClients( String p1, int p2, int p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. If target class is not null instances of target class are instantiated from first column valuesParameters: repository, scan, package name
public java.util.Collection getField( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Field. Selects all rows from FIELD
public java.util.Collection getField( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Field. If converter is not null then elements will be results of conversion.Selects all rows from FIELD
public java.util.Collection getField( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Field. If targetClass is not null then elements will be of targetClass typeSelects all rows from FIELD
public java.util.Collection getField( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Field and returns populated collection. Selects all rows from FIELD
public java.util.Collection getField( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Field and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from FIELD
public java.util.Collection getField( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Field and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from FIELD
public Field getField( int CompilationUnitId, int DeclaringType, String Name )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from FIELD
public Field getField( int CompilationUnitId, int DeclaringType, String Name, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from FIELD
public java.util.Collection getFieldByType( int CompilationUnitId, int DeclaringType ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Field. Selects rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getFieldByType( int CompilationUnitId, int DeclaringType, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Field. If converter is not null then elements will be results of conversion.Selects rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getFieldByType( int CompilationUnitId, int DeclaringType, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Field. If targetClass is not null then elements will be of targetClass typeSelects rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getFieldByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Field and returns populated collection. Selects rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getFieldByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Field and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getFieldByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Field and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getInterface( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface. Selects all rows from INTERFACE
public java.util.Collection getInterface( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface. If converter is not null then elements will be results of conversion.Selects all rows from INTERFACE
public java.util.Collection getInterface( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface. If targetClass is not null then elements will be of targetClass typeSelects all rows from INTERFACE
public java.util.Collection getInterface( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface and returns populated collection. Selects all rows from INTERFACE
public java.util.Collection getInterface( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from INTERFACE
public java.util.Collection getInterface( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from INTERFACE
public Interface getInterface( int CompilationUnitId, int DeclaringType, int InterfaceName )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from INTERFACE
public Interface getInterface( int CompilationUnitId, int DeclaringType, int InterfaceName, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from INTERFACE
public java.util.Collection getInterfaceByType( int CompilationUnitId, int DeclaringType ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface. Selects rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getInterfaceByType( int CompilationUnitId, int DeclaringType, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface. If converter is not null then elements will be results of conversion.Selects rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getInterfaceByType( int CompilationUnitId, int DeclaringType, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface. If targetClass is not null then elements will be of targetClass typeSelects rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getInterfaceByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface and returns populated collection. Selects rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getInterfaceByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getInterfaceByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Interface and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getMessage( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Message. Selects all rows from MESSAGE
public java.util.Collection getMessage( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Message. If converter is not null then elements will be results of conversion.Selects all rows from MESSAGE
public java.util.Collection getMessage( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Message. If targetClass is not null then elements will be of targetClass typeSelects all rows from MESSAGE
public java.util.Collection getMessage( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Message and returns populated collection. Selects all rows from MESSAGE
public java.util.Collection getMessage( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Message and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from MESSAGE
public java.util.Collection getMessage( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Message and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from MESSAGE
public Message getMessage( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from MESSAGE
public Message getMessage( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from MESSAGE
public Number getMessageId( int p1, String p2 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row. Finds message ID by hash code and value
public java.util.Collection getOperation( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation. Selects all rows from OPERATION
public java.util.Collection getOperation( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation. If converter is not null then elements will be results of conversion.Selects all rows from OPERATION
public java.util.Collection getOperation( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation. If targetClass is not null then elements will be of targetClass typeSelects all rows from OPERATION
public java.util.Collection getOperation( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation and returns populated collection. Selects all rows from OPERATION
public java.util.Collection getOperation( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from OPERATION
public java.util.Collection getOperation( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from OPERATION
public Operation getOperation( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from OPERATION
public Operation getOperation( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from OPERATION
public java.util.Collection getOperationByType( int CompilationUnitId, int DeclaringType ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation. Selects rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getOperationByType( int CompilationUnitId, int DeclaringType, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation. If converter is not null then elements will be results of conversion.Selects rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getOperationByType( int CompilationUnitId, int DeclaringType, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation. If targetClass is not null then elements will be of targetClass typeSelects rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getOperationByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation and returns populated collection. Selects rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getOperationByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getOperationByType( int CompilationUnitId, int DeclaringType, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Operation and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public Number getOperationId( int p1, int p2, String p3, String p4 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row. Paramers: compilation unit, declaring type, name, parameters
public java.util.Collection getOverride( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Override. Selects all rows from OVERRIDE
public java.util.Collection getOverride( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Override. If converter is not null then elements will be results of conversion.Selects all rows from OVERRIDE
public java.util.Collection getOverride( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Override. If targetClass is not null then elements will be of targetClass typeSelects all rows from OVERRIDE
public java.util.Collection getOverride( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Override and returns populated collection. Selects all rows from OVERRIDE
public java.util.Collection getOverride( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Override and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from OVERRIDE
public java.util.Collection getOverride( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Override and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from OVERRIDE
public Override getOverride( int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from OVERRIDE
public Override getOverride( int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from OVERRIDE
public java.util.Collection getOverrideBySpecification( int Specification ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Override. Selects rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public java.util.Collection getOverrideBySpecification( int Specification, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Override. If converter is not null then elements will be results of conversion.Selects rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public java.util.Collection getOverrideBySpecification( int Specification, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Override. If targetClass is not null then elements will be of targetClass typeSelects rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public java.util.Collection getOverrideBySpecification( int Specification, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Override and returns populated collection. Selects rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public java.util.Collection getOverrideBySpecification( int Specification, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Override and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public java.util.Collection getOverrideBySpecification( int Specification, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Override and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public java.util.Collection getOverrideSignatures( int p1 ) Executes query, returns database backed collection with elements of type of the first column.
public java.util.Collection getOverrideSignatures( int p1, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type of the first column. If converter is not null then it converts elements.
public java.util.Collection getOverrideSignatures( int p1, Class targetClass ) Executes query, returns database backed collection with elements of type of the first column. If target class is not null then elements are instances of target class created from the first column values.
public java.util.Collection getOverrideSignatures( int p1, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection.
public java.util.Collection getOverrideSignatures( int p1, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Elements get converted by the converter if it is not null.
public java.util.Collection getOverrideSignatures( int p1, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. If target class is not null instances of target class are instantiated from first column values
public java.util.Collection getPackage( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Package. Selects all rows from PACKAGE
public java.util.Collection getPackage( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Package. If converter is not null then elements will be results of conversion.Selects all rows from PACKAGE
public java.util.Collection getPackage( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Package. If targetClass is not null then elements will be of targetClass typeSelects all rows from PACKAGE
public java.util.Collection getPackage( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Package and returns populated collection. Selects all rows from PACKAGE
public java.util.Collection getPackage( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Package and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from PACKAGE
public java.util.Collection getPackage( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Package and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from PACKAGE
public Package getPackage( String Repository, int NameId )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from PACKAGE
public Package getPackage( String Repository, int NameId, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from PACKAGE
public java.util.Collection getPackageCompilationUnits( String p1, int p2, int p3 ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit. Returns compilation units which belong to a package. Parameters: repository, package, scan id
public java.util.Collection getPackageCompilationUnits( String p1, int p2, int p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit. If converter is not null then elements will be results of conversion.Returns compilation units which belong to a package. Parameters: repository, package, scan id
public java.util.Collection getPackageCompilationUnits( String p1, int p2, int p3, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit. If targetClass is not null then elements will be of targetClass typeReturns compilation units which belong to a package. Parameters: repository, package, scan id
public java.util.Collection getPackageCompilationUnits( String p1, int p2, int p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit and returns populated collection. Returns compilation units which belong to a package. Parameters: repository, package, scan id
public java.util.Collection getPackageCompilationUnits( String p1, int p2, int p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit and returns populated collection. If converter is not null then elements will be results of conversion. Returns compilation units which belong to a package. Parameters: repository, package, scan id
public java.util.Collection getPackageCompilationUnits( String p1, int p2, int p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.CompilationUnit and returns populated collection. If targetClass is not null then elements will be of targetClass type. Returns compilation units which belong to a package. Parameters: repository, package, scan id
public Number getPackageName( int p1, String p2, int p3 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row.
public java.util.Collection getPrimaryKey( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.PrimaryKey. Selects all rows from PRIMARY_KEY
public java.util.Collection getPrimaryKey( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.PrimaryKey. If converter is not null then elements will be results of conversion.Selects all rows from PRIMARY_KEY
public java.util.Collection getPrimaryKey( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.PrimaryKey. If targetClass is not null then elements will be of targetClass typeSelects all rows from PRIMARY_KEY
public java.util.Collection getPrimaryKey( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.PrimaryKey and returns populated collection. Selects all rows from PRIMARY_KEY
public java.util.Collection getPrimaryKey( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.PrimaryKey and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from PRIMARY_KEY
public java.util.Collection getPrimaryKey( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.PrimaryKey and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from PRIMARY_KEY
public PrimaryKey getPrimaryKey( String KeyName )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from PRIMARY_KEY
public PrimaryKey getPrimaryKey( String KeyName, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from PRIMARY_KEY
public java.util.Collection getRepository( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Repository. Selects all rows from REPOSITORY
public java.util.Collection getRepository( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Repository. If converter is not null then elements will be results of conversion.Selects all rows from REPOSITORY
public java.util.Collection getRepository( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Repository. If targetClass is not null then elements will be of targetClass typeSelects all rows from REPOSITORY
public java.util.Collection getRepository( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Repository and returns populated collection. Selects all rows from REPOSITORY
public java.util.Collection getRepository( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Repository and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from REPOSITORY
public java.util.Collection getRepository( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Repository and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from REPOSITORY
public Repository getRepository( String Name )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from REPOSITORY
public Repository getRepository( String Name, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from REPOSITORY
public java.util.Collection getRepositoryPackages( String p1, int p2 ) Executes query, returns database backed collection with elements of type of the first column. Parameters: repository, scan
public java.util.Collection getRepositoryPackages( String p1, int p2, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type of the first column. If converter is not null then it converts elements. Parameters: repository, scan
public java.util.Collection getRepositoryPackages( String p1, int p2, Class targetClass ) Executes query, returns database backed collection with elements of type of the first column. If target class is not null then elements are instances of target class created from the first column values. Parameters: repository, scan
public java.util.Collection getRepositoryPackages( String p1, int p2, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Parameters: repository, scan
public java.util.Collection getRepositoryPackages( String p1, int p2, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Elements get converted by the converter if it is not null.Parameters: repository, scan
public java.util.Collection getRepositoryPackages( String p1, int p2, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. If target class is not null instances of target class are instantiated from first column valuesParameters: repository, scan
public java.util.Collection getScan( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Scan. Selects all rows from SCAN
public java.util.Collection getScan( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Scan. If converter is not null then elements will be results of conversion.Selects all rows from SCAN
public java.util.Collection getScan( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Scan. If targetClass is not null then elements will be of targetClass typeSelects all rows from SCAN
public java.util.Collection getScan( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Scan and returns populated collection. Selects all rows from SCAN
public java.util.Collection getScan( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Scan and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from SCAN
public java.util.Collection getScan( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Scan and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from SCAN
public Scan getScan( String Repository, int Id )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from SCAN
public Scan getScan( String Repository, int Id, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from SCAN
public java.util.Collection getSupplierCardinality( String p1, int p2, int p3 ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.SupplierCardinality. Parameters: repository, scan
public java.util.Collection getSupplierCardinality( String p1, int p2, int p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.SupplierCardinality. If converter is not null then elements will be results of conversion.Parameters: repository, scan
public java.util.Collection getSupplierCardinality( String p1, int p2, int p3, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.SupplierCardinality. If targetClass is not null then elements will be of targetClass typeParameters: repository, scan
public java.util.Collection getSupplierCardinality( String p1, int p2, int p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.SupplierCardinality and returns populated collection. Parameters: repository, scan
public java.util.Collection getSupplierCardinality( String p1, int p2, int p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.SupplierCardinality and returns populated collection. If converter is not null then elements will be results of conversion. Parameters: repository, scan
public java.util.Collection getSupplierCardinality( String p1, int p2, int p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.SupplierCardinality and returns populated collection. If targetClass is not null then elements will be of targetClass type. Parameters: repository, scan
public java.util.Collection getType( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. Selects all rows from TYPE
public java.util.Collection getType( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. If converter is not null then elements will be results of conversion.Selects all rows from TYPE
public java.util.Collection getType( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. If targetClass is not null then elements will be of targetClass typeSelects all rows from TYPE
public java.util.Collection getType( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. Selects all rows from TYPE
public java.util.Collection getType( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from TYPE
public java.util.Collection getType( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from TYPE
public Type getType( int CompilationUnitId, int Name )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from TYPE
public Type getType( int CompilationUnitId, int Name, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from TYPE
public java.util.Collection getTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. Selects rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. If converter is not null then elements will be results of conversion.Selects rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. If targetClass is not null then elements will be of targetClass typeSelects rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. Selects rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public java.util.Collection getTypeByName( int Name ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. Selects rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public java.util.Collection getTypeByName( int Name, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. If converter is not null then elements will be results of conversion.Selects rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public java.util.Collection getTypeByName( int Name, Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.Type. If targetClass is not null then elements will be of targetClass typeSelects rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public java.util.Collection getTypeByName( int Name, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. Selects rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public java.util.Collection getTypeByName( int Name, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. If converter is not null then elements will be results of conversion. Selects rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public java.util.Collection getTypeByName( int Name, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.Type and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public java.util.Collection getTypeClients( String p1, int p2, int p3 ) Executes query, returns database backed collection with elements of type of the first column. Parameters: repository, scan, supplier name
public java.util.Collection getTypeClients( String p1, int p2, int p3, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type of the first column. If converter is not null then it converts elements. Parameters: repository, scan, supplier name
public java.util.Collection getTypeClients( String p1, int p2, int p3, Class targetClass ) Executes query, returns database backed collection with elements of type of the first column. If target class is not null then elements are instances of target class created from the first column values. Parameters: repository, scan, supplier name
public java.util.Collection getTypeClients( String p1, int p2, int p3, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Parameters: repository, scan, supplier name
public java.util.Collection getTypeClients( String p1, int p2, int p3, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Elements get converted by the converter if it is not null.Parameters: repository, scan, supplier name
public java.util.Collection getTypeClients( String p1, int p2, int p3, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. If target class is not null instances of target class are instantiated from first column valuesParameters: repository, scan, supplier name
public java.util.Collection getTypeDependency( ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.TypeDependency. Selects all rows from TYPE_DEPENDENCY
public java.util.Collection getTypeDependency( com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.TypeDependency. If converter is not null then elements will be results of conversion.Selects all rows from TYPE_DEPENDENCY
public java.util.Collection getTypeDependency( Class targetClass ) Executes query, returns database backed collection with elements of type com.pavelvlasov.jsel.impl.sql.TypeDependency. If targetClass is not null then elements will be of targetClass typeSelects all rows from TYPE_DEPENDENCY
public java.util.Collection getTypeDependency( java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.TypeDependency and returns populated collection. Selects all rows from TYPE_DEPENDENCY
public java.util.Collection getTypeDependency( java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.TypeDependency and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from TYPE_DEPENDENCY
public java.util.Collection getTypeDependency( java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with elements of type com.pavelvlasov.jsel.impl.sql.TypeDependency and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from TYPE_DEPENDENCY
public TypeDependency getTypeDependency( int SupplierName, int ClientCuId, int ClientName )  throws java.sql.SQLExceptionExecutes query and returns single object. Selects by primary key from TYPE_DEPENDENCY
public TypeDependency getTypeDependency( int SupplierName, int ClientCuId, int ClientName, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from TYPE_DEPENDENCY
public java.util.Collection getTypeDependency( int p1, int p2 ) Executes query, returns database backed collection with elements of type of the first column. Parameters: client compilation unit, client name
public java.util.Collection getTypeDependency( int p1, int p2, com.pavelvlasov.convert.Converter converter ) Executes query, returns database backed collection with elements of type of the first column. If converter is not null then it converts elements. Parameters: client compilation unit, client name
public java.util.Collection getTypeDependency( int p1, int p2, Class targetClass ) Executes query, returns database backed collection with elements of type of the first column. If target class is not null then elements are instances of target class created from the first column values. Parameters: client compilation unit, client name
public java.util.Collection getTypeDependency( int p1, int p2, java.util.Collection receiver )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Parameters: client compilation unit, client name
public java.util.Collection getTypeDependency( int p1, int p2, java.util.Collection receiver, com.pavelvlasov.convert.Converter converter )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. Elements get converted by the converter if it is not null.Parameters: client compilation unit, client name
public java.util.Collection getTypeDependency( int p1, int p2, java.util.Collection receiver, Class targetClass )  throws java.sql.SQLExceptionExecutes query, populates collection with values from the first column and returns the collection. If target class is not null instances of target class are instantiated from first column valuesParameters: client compilation unit, client name
public Number getTypeDependencyBySupplier( int p1, int p2, int p3 )  throws java.sql.SQLExceptionExecutes query and returns value of the first (the only) column in the first row. Parameters: supplier, client compilation unit, client name
public TypeInfo getTypeInfo( int p1, String p2, int p3 )  throws java.sql.SQLExceptionExecutes query and returns single object. Parameters: name, repository, scan
public TypeInfo getTypeInfo( int p1, String p2, int p3, Class targetClass )  throws java.sql.SQLExceptionExecutes query and returns single object of target class type. Target class must be return type compatible. Parameters: name, repository, scan
public int insertCallTrace( int Id, int Caller, String CalleeName, Integer Callee )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into CALL_TRACE
public int insertCallTrace( CallTrace rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into CALL_TRACE
public int insertCompilationUnit( int Id, String Repository, int Package, String Path, String Name, long CompilationUnitSize, long Checksum, short StoreLevel, String Root, String Revision, byte CuSource )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into COMPILATION_UNIT
public int insertCompilationUnit( CompilationUnit rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into COMPILATION_UNIT
public int insertCompilationUnitScan( String Repository, int ScanId, int CompilationUnitId )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into COMPILATION_UNIT_SCAN
public int insertCompilationUnitScan( CompilationUnitScan rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into COMPILATION_UNIT_SCAN
public int insertField( int CompilationUnitId, int DeclaringType, String Name, String Type, String Signature )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into FIELD
public int insertField( Field rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into FIELD
public int insertInterface( int CompilationUnitId, int DeclaringType, int InterfaceName, String Signature )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into INTERFACE
public int insertInterface( Interface rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into INTERFACE
public int insertMessage( int Id, int HashCode, String MessageValue )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into MESSAGE
public int insertMessage( Message rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into MESSAGE
public int insertOperation( int Id, int CompilationUnitId, int DeclaringType, String Name, String ReturnType, String Parameters, String Modifiers, String Signature )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into OPERATION
public int insertOperation( Operation rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into OPERATION
public int insertOverride( int Id, int Specification, int Implementation )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into OVERRIDE
public int insertOverride( Override rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into OVERRIDE
public int insertPackage( String Repository, int NameId )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into PACKAGE
public int insertPackage( Package rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into PACKAGE
public int insertPrimaryKey( String KeyName, int KeyValue )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into PRIMARY_KEY
public int insertPrimaryKey( PrimaryKey rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into PRIMARY_KEY
public int insertRepository( String Name, String Description )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into REPOSITORY
public int insertRepository( Repository rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into REPOSITORY
public int insertScan( String Repository, int Id, java.sql.Timestamp ScanDate, Integer ScanSize, String Description, Long ByteSize, Long Checksum, Boolean DependencyLoaded )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into SCAN
public int insertScan( Scan rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into SCAN
public int insertType( int CompilationUnitId, int Name, Integer DeclaringType, String Superclass, String EnclosingScopeSignature, int Implementor, short StoreLevel, String SuperclassSignature )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into TYPE
public int insertType( Type rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into TYPE
public int insertTypeDependency( int SupplierName, int ClientCuId, int ClientName, int SupplierPackage, int ClientPackage )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into TYPE_DEPENDENCY
public int insertTypeDependency( TypeDependency rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Inserts new record into TYPE_DEPENDENCY
public void processCallTrace( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from CALL_TRACE
public void processCallTraceByCallee( Integer Callee, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from CALL_TRACE by foreign key FK_CALL_TRACE_SQLC$CALLEE columns value(s): CALLEE
public void processCallTraceByCaller( int Caller, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from CALL_TRACE by foreign key FK_CALLED_OPERATION_SQLC$CALLER columns value(s): CALLER
public void processClientCardinality( String p1, int p2, int p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: repository, scan
public void processCompilationUnit( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from COMPILATION_UNIT
public void processCompilationUnitByStoreLevel( String p1, short p2, int p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processCompilationUnitByTypeStoreLevel( String p1, int p2, short p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processCompilationUnitScan( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from COMPILATION_UNIT_SCAN
public void processExternalClientCardinality( String p1, int p2, int p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: repository, scan, package
public void processExternalClientCardinality( String p1, int p2, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: repository, scan
public void processExternalSupplierClients( String p1, int p2, int p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: repository, scan, package name
public void processField( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from FIELD
public void processFieldByType( int CompilationUnitId, int DeclaringType, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from FIELD by foreign key FK_FIELD_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public void processInterface( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from INTERFACE
public void processInterfaceByType( int CompilationUnitId, int DeclaringType, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from INTERFACE by foreign key FK_INTERFACE_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public void processMessage( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from MESSAGE
public void processOperation( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from OPERATION
public void processOperationByType( int CompilationUnitId, int DeclaringType, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from OPERATION by foreign key FK_OPERATION_SQLC$TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public void processOverride( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from OVERRIDE
public void processOverrideBySpecification( int Specification, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from OVERRIDE by foreign key FK_OVERRIDE_SQLC$SPECIFICATION columns value(s): SPECIFICATION
public void processOverrideSignatures( int p1, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row.
public void processPackage( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from PACKAGE
public void processPackageCompilationUnits( String p1, int p2, int p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Returns compilation units which belong to a package. Parameters: repository, package, scan id
public void processPrimaryKey( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from PRIMARY_KEY
public void processRepository( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from REPOSITORY
public void processRepositoryPackages( String p1, int p2, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: repository, scan
public void processScan( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from SCAN
public void processSupplierCardinality( String p1, int p2, int p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: repository, scan
public void processType( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from TYPE
public void processTypeByDeclaringType( int CompilationUnitId, Integer DeclaringType, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from TYPE by foreign key FK_TYPE_SQLC$DECLARING_TYPE columns value(s): COMPILATION_UNIT_ID, DECLARING_TYPE
public void processTypeByName( int Name, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects rows from TYPE by foreign key FK_TYPE_SQLC$NAME columns value(s): NAME
public void processTypeClients( String p1, int p2, int p3, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: repository, scan, supplier name
public void processTypeDependency( com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from TYPE_DEPENDENCY
public void processTypeDependency( int p1, int p2, com.pavelvlasov.sql.RowProcessor processor )  throws java.sql.SQLExceptionExecutes query, iterates over rows and invokes methods of RowProcessor for each row. Parameters: client compilation unit, client name
public int setTypeStoreLevel( short p1, int p2, int p3 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows.
public int setTypeSuperClass( String p1, String p2, int p3, int p4 )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Parameters: superclass, superclass signature, compilation unit id, name id
public int updateCallTrace( CallTrace rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in CALL_TRACE
public int updateCompilationUnit( CompilationUnit rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in COMPILATION_UNIT
public int updateField( Field rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in FIELD
public int updateInterface( Interface rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in INTERFACE
public int updateMessage( Message rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in MESSAGE
public int updateOperation( Operation rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in OPERATION
public int updateOverride( Override rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in OVERRIDE
public int updatePrimaryKey( PrimaryKey rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in PRIMARY_KEY
public int updateRepository( Repository rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in REPOSITORY
public int updateScan( Scan rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in SCAN
public int updateType( Type rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in TYPE
public int updateTypeDependency( TypeDependency rowInterface )  throws java.sql.SQLExceptionExecutes update and returns number of affected rows. Updates record with by primary key in TYPE_DEPENDENCY