Uses of Interface
org.faktorips.runtime.ITable
-
Packages that use ITable Package Description org.faktorips.runtime org.faktorips.runtime.internal org.faktorips.runtime.model Contains classes that allow access to design time model information about Faktor-IPS objects.org.faktorips.runtime.model.table Classes that allow access to design time model information on tables.org.faktorips.runtime.model.type Classes that allow access to design time model information on policy and product component types. -
-
Uses of ITable in org.faktorips.runtime
Methods in org.faktorips.runtime with type parameters of type ITable Modifier and Type Method Description <T extends ITable<?>>
TIRuntimeRepository. getTable(java.lang.Class<T> tableClass)Returns the table contents for the given table class.protected <T extends ITable<?>>
TInMemoryRuntimeRepository. getTableInternal(java.lang.Class<T> tableClass)InMemoryRepository also searches for tables that are instances of subclasses of the given tableClass.Methods in org.faktorips.runtime that return ITable Modifier and Type Method Description ITable<?>IRuntimeRepository. getTable(java.lang.String qualifiedTableName)Returns the table contents for the given qualified table name.protected ITable<?>InMemoryRuntimeRepository. getTableInternal(java.lang.String qualifiedTableName)Methods in org.faktorips.runtime that return types with arguments of type ITable Modifier and Type Method Description IComputable<java.lang.String,ITable<?>>ICacheFactory. createTableCache(IComputable<java.lang.String,ITable<?>> computable)java.util.List<ITable<?>>IRuntimeRepository. getAllTables()Returns all tables available in this repository.Methods in org.faktorips.runtime with parameters of type ITable Modifier and Type Method Description voidInMemoryRuntimeRepository. putTable(ITable<?> table)Puts the table into the repository.voidInMemoryRuntimeRepository. putTable(ITable<?> table, java.lang.String qName)Puts the table with the indicated name into the repository with .Method parameters in org.faktorips.runtime with type arguments of type ITable Modifier and Type Method Description IComputable<java.lang.String,ITable<?>>ICacheFactory. createTableCache(IComputable<java.lang.String,ITable<?>> computable)protected voidInMemoryRuntimeRepository. getAllTables(java.util.List<ITable<?>> result) -
Uses of ITable in org.faktorips.runtime.internal
Classes in org.faktorips.runtime.internal that implement ITable Modifier and Type Class Description classTable<R>The base class for all the generated table classes.Methods in org.faktorips.runtime.internal with type parameters of type ITable Modifier and Type Method Description <T extends ITable<?>>
TAbstractRuntimeRepository. getTable(java.lang.Class<T> tableClass)protected abstract <T extends ITable<?>>
TAbstractRuntimeRepository. getTableInternal(java.lang.Class<T> tableClass)Same asAbstractRuntimeRepository.getTable(Class)but searches only in this repository and not the ones this repository depends on.protected <T extends ITable<?>>
TAbstractTocBasedRuntimeRepository. getTableInternal(java.lang.Class<T> tableClass)Methods in org.faktorips.runtime.internal that return ITable Modifier and Type Method Description protected ITable<?>AbstractClassLoadingRuntimeRepository. createTable(TableContentTocEntry tocEntry)protected abstract ITable<?>AbstractTocBasedRuntimeRepository. createTable(TableContentTocEntry tocEntry)Creates the table object for the given toc entry.protected abstract ITable<?>AbstractCachingRuntimeRepository. getNotCachedTable(java.lang.String qualifiedTableName)protected ITable<?>AbstractTocBasedRuntimeRepository. getNotCachedTable(java.lang.String qualifiedTableName)ITable<?>AbstractRuntimeRepository. getTable(java.lang.String qualifiedTableName)protected ITable<?>AbstractCachingRuntimeRepository. getTableInternal(java.lang.String qualifiedTableName)protected abstract ITable<?>AbstractRuntimeRepository. getTableInternal(java.lang.String qualifiedTableName)Same asAbstractRuntimeRepository.getTable(String)) but searches only in this repository and not the ones this repository depends on.Methods in org.faktorips.runtime.internal that return types with arguments of type ITable Modifier and Type Method Description IComputable<java.lang.String,ITable<?>>AbstractCacheFactory. createTableCache(IComputable<java.lang.String,ITable<?>> computable)java.util.List<ITable<?>>AbstractRuntimeRepository. getAllTables()Method parameters in org.faktorips.runtime.internal with type arguments of type ITable Modifier and Type Method Description IComputable<java.lang.String,ITable<?>>AbstractCacheFactory. createTableCache(IComputable<java.lang.String,ITable<?>> computable)protected abstract voidAbstractRuntimeRepository. getAllTables(java.util.List<ITable<?>> result)Same asAbstractRuntimeRepository.getAllTables()but searches only in this repository and not the ones this repository depends on.voidAbstractTocBasedRuntimeRepository. getAllTables(java.util.List<ITable<?>> result) -
Uses of ITable in org.faktorips.runtime.model
Methods in org.faktorips.runtime.model with parameters of type ITable Modifier and Type Method Description static TableStructureIpsModel. getTableStructure(ITable<?> table)Method parameters in org.faktorips.runtime.model with type arguments of type ITable Modifier and Type Method Description static TableStructureIpsModel. getTableStructure(java.lang.Class<? extends ITable<?>> tableObjectClass) -
Uses of ITable in org.faktorips.runtime.model.table
Method parameters in org.faktorips.runtime.model.table with type arguments of type ITable Modifier and Type Method Description protected static java.util.LinkedHashMap<java.lang.String,TableColumn>TableColumn. createModelsFrom(TableStructure tableStructure, java.lang.Class<? extends ITable<?>> tableObjectClass, java.lang.Class<?> tableRowClass)Constructor parameters in org.faktorips.runtime.model.table with type arguments of type ITable Constructor Description TableStructure(java.lang.Class<? extends ITable<?>> tableObjectClass) -
Uses of ITable in org.faktorips.runtime.model.type
Methods in org.faktorips.runtime.model.type that return ITable Modifier and Type Method Description ITable<?>TableUsage. getTable(IProductComponent productComponent, java.util.Calendar effectiveDate)Returns the table the given product component references for this table usage.
-