|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Composite | |
|---|---|
| com.ikokoon.serenity.hudson | |
| com.ikokoon.serenity.hudson.modeller | |
| com.ikokoon.serenity.model | |
| com.ikokoon.serenity.persistence | |
| com.ikokoon.serenity.process.aggregator | |
| Uses of Composite in com.ikokoon.serenity.hudson |
|---|
| Methods in com.ikokoon.serenity.hudson with parameters of type Composite | |
|---|---|
java.lang.String |
SerenityResult.getModel(java.lang.String modelName,
Composite<?,?> composite)
|
| Uses of Composite in com.ikokoon.serenity.hudson.modeller |
|---|
| Methods in com.ikokoon.serenity.hudson.modeller with parameters of type Composite | |
|---|---|
void |
HighchartsModeller.IConstructor.construct(java.lang.StringBuilder builder,
Composite<?,?> composite)
|
void |
JetChartModeller.visit(java.lang.Class<?> klass,
Composite<?,?>... composites)
Visits a composite and builds a model from the composite. |
void |
IModeller.visit(java.lang.Class<?> klass,
Composite<?,?>... composites)
Visits a composite and builds a model from the composite. |
void |
HighchartsModeller.visit(java.lang.Class<?> klass,
Composite<?,?>... composites)
Visits the composites and generates a model string for the Highcharts javaScript graph. |
| Uses of Composite in com.ikokoon.serenity.model |
|---|
| Subclasses of Composite in com.ikokoon.serenity.model | |
|---|---|
class |
Afferent
This class represents a package that the owner is affected by. |
class |
Class<E,F>
|
class |
Efferent
This class represents a package that the owner effects. |
class |
Line<E,F>
|
class |
Method<E,F>
|
class |
Package<E,F>
|
class |
Project<E,F>
|
| Methods in com.ikokoon.serenity.model that return Composite | |
|---|---|
Composite<E,F> |
Composite.getParent()
|
| Methods in com.ikokoon.serenity.model with parameters of type Composite | |
|---|---|
void |
Composite.setParent(Composite<E,F> parent)
|
| Uses of Composite in com.ikokoon.serenity.persistence |
|---|
| Methods in com.ikokoon.serenity.persistence with type parameters of type Composite | ||
|---|---|---|
|
IDataBase.find(java.lang.Class<E> klass)
Selects all the classes of a particular type. |
|
|
DataBaseRam.find(java.lang.Class<E> klass)
Selects all the classes of a particular type. |
|
|
DataBaseOdb.find(java.lang.Class<E> klass)
Selects all the classes of a particular type. |
|
|
DataBaseJpa.find(java.lang.Class<E> klass)
Selects all the classes of a particular type. |
|
|
IDataBase.find(java.lang.Class<E> klass,
int start,
int end)
Selects all the classes of a particular type starting from an index and going to an index. |
|
|
DataBaseRam.find(java.lang.Class<E> klass,
int start,
int end)
Selects all the classes of a particular type starting from an index and going to an index. |
|
|
DataBaseOdb.find(java.lang.Class<E> klass,
int start,
int end)
Selects all the classes of a particular type starting from an index and going to an index. |
|
|
DataBaseJpa.find(java.lang.Class<E> klass,
int start,
int end)
|
|
|
IDataBase.find(java.lang.Class<E> klass,
java.util.List<java.lang.Object> parameters)
Selects a class based on the combination of field values in the parameter list. |
|
|
DataBaseRam.find(java.lang.Class<E> klass,
java.util.List<java.lang.Object> parameters)
Selects a class based on the combination of field values in the parameter list. |
|
|
DataBaseOdb.find(java.lang.Class<E> klass,
java.util.List<java.lang.Object> parameters)
Selects a class based on the combination of field values in the parameter list. |
|
|
DataBaseJpa.find(java.lang.Class<E> klass,
java.util.List<java.lang.Object> parameters)
|
|
|
IDataBase.find(java.lang.Class<E> klass,
java.lang.Long id)
Selects a composite based on the class type and the id of the class. |
|
|
DataBaseRam.find(java.lang.Class<E> klass,
java.lang.Long id)
Selects a composite based on the class type and the id of the class. |
|
|
DataBaseOdb.find(java.lang.Class<E> klass,
java.lang.Long id)
Selects a composite based on the class type and the id of the class. |
|
|
DataBaseJpa.find(java.lang.Class<E> klass,
java.lang.Long id)
Selects a composite based on the class type and the id of the class. |
|
|
IDataBase.find(java.lang.Class<E> klass,
java.util.Map<java.lang.String,java.lang.Object> parameters)
Selects a list of objects based on the values in the objects and the class of the object. |
|
|
DataBaseRam.find(java.lang.Class<E> klass,
java.util.Map<java.lang.String,java.lang.Object> parameters)
|
|
|
DataBaseOdb.find(java.lang.Class<E> klass,
java.util.Map<java.lang.String,java.lang.Object> parameters)
Selects a list of objects based on the values in the objects and the class of the object. |
|
|
DataBaseJpa.find(java.lang.Class<E> klass,
java.util.Map<java.lang.String,java.lang.Object> parameters)
Selects a list of objects based on the values in the objects and the class of the object. |
|
|
IDataBase.persist(E composite)
Persists an object to a persistent store. |
|
|
DataBaseRam.persist(E composite)
Persists an object to a persistent store. |
|
|
DataBaseOdb.persist(E composite)
Persists an object to a persistent store. |
|
|
DataBaseJpa.persist(E composite)
Persists an object to a persistent store. |
|
|
IDataBase.remove(java.lang.Class<E> klass,
java.lang.Long id)
Removes an object from the database and returns the removed object as a convenience. |
|
|
DataBaseRam.remove(java.lang.Class<E> klass,
java.lang.Long id)
Removes an object from the database and returns the removed object as a convenience. |
|
|
DataBaseOdb.remove(java.lang.Class<E> klass,
java.lang.Long id)
Removes an object from the database and returns the removed object as a convenience. |
|
|
DataBaseJpa.remove(java.lang.Class<E> klass,
java.lang.Long id)
Removes an object from the database and returns the removed object as a convenience. |
|
| Methods in com.ikokoon.serenity.persistence with parameters of type Composite | |
|---|---|
static void |
DataBaseToolkit.execute(IDataBase dataBase,
Composite composite,
DataBaseToolkit.Executer executer)
|
boolean |
DataBaseToolkit.ICriteria.satisfied(Composite<?,?> composite)
|
| Uses of Composite in com.ikokoon.serenity.process.aggregator |
|---|
| Methods in com.ikokoon.serenity.process.aggregator with parameters of type Composite | |
|---|---|
protected void |
AAggregator.setPrecision(Composite<?,?> composite)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||