|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IEntity | |
---|---|
pl.edu.agh.cast.data.model.general | In this package the General Domain Model is defined. |
Uses of IEntity in pl.edu.agh.cast.data.model.general |
---|
Classes in pl.edu.agh.cast.data.model.general that implement IEntity | |
---|---|
class |
Entity
Default implementation of IEntity interface. |
Methods in pl.edu.agh.cast.data.model.general that return IEntity | |
---|---|
IEntity |
ManyToManyRelation.getSourceEntitiy(int index)
Gets source entity associated with the relation with given index in the list. |
IEntity |
IManyToManyRelation.getSourceEntitiy(int index)
Gets source entity associated with the relation with given index in the list. |
IEntity |
TimedOneToOneRelation.getSourceEntity()
Returns the source entity. |
IEntity |
OneToOneRelation.getSourceEntity()
Returns the source entity. |
IEntity |
IOneToOneRelation.getSourceEntity()
Returns the source entity. |
IEntity |
ManyToManyRelation.getTargetEntitiy(int index)
Gets target entity associated with the relation with given index in the list. |
IEntity |
IManyToManyRelation.getTargetEntitiy(int index)
Gets target entity associated with the relation with given index in the list. |
IEntity |
TimedOneToOneRelation.getTargetEntity()
Returns the target entity. |
IEntity |
OneToOneRelation.getTargetEntity()
Returns the target entity. |
IEntity |
IOneToOneRelation.getTargetEntity()
Returns the target entity. |
Methods in pl.edu.agh.cast.data.model.general that return types with arguments of type IEntity | |
---|---|
Collection<IEntity> |
IGeneralDataSet.getEntities()
Returns all entities contained in the data set. |
Collection<IEntity> |
GeneralDataSet.getEntities()
Returns all entities contained in the data set. |
List<? extends IEntity> |
ManyToManyRelation.getSourceEntities()
Returns source entities associated with the relation. |
List<? extends IEntity> |
IManyToManyRelation.getSourceEntities()
Returns source entities associated with the relation. |
List<? extends IEntity> |
ManyToManyRelation.getTargetEntities()
Returns target entities associated with the relation. |
List<? extends IEntity> |
IManyToManyRelation.getTargetEntities()
Returns target entities associated with the relation. |
Methods in pl.edu.agh.cast.data.model.general with parameters of type IEntity | |
---|---|
void |
ManyToManyRelation.addSourceEntitiy(IEntity entity)
Adds a source entity associated with the relation. |
void |
IManyToManyRelation.addSourceEntitiy(IEntity entity)
Adds a source entity associated with the relation. |
void |
ManyToManyRelation.addTargetEntitiy(IEntity entity)
Adds a target entity associated with the relation. |
void |
IManyToManyRelation.addTargetEntitiy(IEntity entity)
Adds a target entity associated with the relation. |
protected boolean |
ManyToManyRelation.isEntityValid(IEntity entity)
Checks if given entity is valid for the relation's source and target entities list. |
boolean |
ManyToManyRelation.removeSourceEntitiy(IEntity entity)
Removes the specified source entity associated with the relation. |
boolean |
IManyToManyRelation.removeSourceEntitiy(IEntity entity)
Removes the specified source entity associated with the relation. |
boolean |
ManyToManyRelation.removeTargetEntitiy(IEntity entity)
Removes the specified target entity associated with the relation. |
boolean |
IManyToManyRelation.removeTargetEntitiy(IEntity entity)
Removes the specified target entity associated with the relation. |
void |
TimedOneToOneRelation.setSourceEntity(IEntity entity)
Sets the source entity. |
void |
OneToOneRelation.setSourceEntity(IEntity entity)
Sets the source entity. |
void |
IOneToOneRelation.setSourceEntity(IEntity entity)
Sets the source entity. |
void |
TimedOneToOneRelation.setTargetEntity(IEntity entity)
Sets the target entity. |
void |
OneToOneRelation.setTargetEntity(IEntity entity)
Sets the target entity. |
void |
IOneToOneRelation.setTargetEntity(IEntity entity)
Sets the target entity. |
Method parameters in pl.edu.agh.cast.data.model.general with type arguments of type IEntity | |
---|---|
protected boolean |
ManyToManyRelation.isEntityListValid(List<? extends IEntity> entities)
Checks if given list of entities is valid for the relation's source and target entities list. |
protected boolean |
ManyToManyRelation.isSourceEntityListValid(List<? extends IEntity> entities)
Checks if given list of entities is valid for the relation's source entities list. |
protected boolean |
ManyToManyRelation.isTargetEntityListValid(List<? extends IEntity> entities)
Checks if given list of entities is valid for the relations source and target entities list. |
void |
ManyToManyRelation.setSourceEntities(List<? extends IEntity> entities)
Sets source entities associated with the relation. |
void |
IManyToManyRelation.setSourceEntities(List<? extends IEntity> entities)
Sets source entities associated with the relation. |
void |
ManyToManyRelation.setTargetEntities(List<? extends IEntity> entities)
Sets target entities associated with the relation. |
void |
IManyToManyRelation.setTargetEntities(List<? extends IEntity> entities)
Sets target entities associated with the relation. |
Constructors in pl.edu.agh.cast.data.model.general with parameters of type IEntity | |
---|---|
OneToOneRelation(IEntity source,
IEntity target,
boolean directed)
Creates new one-to-one relation with given source and target entity, direction and newly-generated ID. |
|
OneToOneRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
IEntity source,
IEntity target,
boolean directed)
Creates new one-to-one relation with given data set, source and target entity, direction and newly-generated ID. |
|
OneToOneRelation(UUID id,
IEntity source,
IEntity target,
boolean directed)
Creates new one-to-one relation with given ID, source and target entity and direction. |
|
TimedOneToOneRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
IEntity source,
IEntity target,
boolean directed,
Date date)
Creates new timed one-to-one relation with given data set, source and target entity, direction and date (start == end). |
|
TimedOneToOneRelation(UUID id,
IGeneralDataSet<? extends IGeneralElement> dataSet,
IEntity source,
IEntity target,
boolean directed,
Date startDate,
Date endDate)
Creates new timed one-to-one relation with given ID, data set, source and target entity, direction and start and end dates. |
Constructor parameters in pl.edu.agh.cast.data.model.general with type arguments of type IEntity | |
---|---|
ManyToManyRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Creates new many-to-many relation with given data set, source and target entities, direction and newly-generated ID. |
|
ManyToManyRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Creates new many-to-many relation with given data set, source and target entities, direction and newly-generated ID. |
|
ManyToManyRelation(Type type,
UUID id,
IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Initializes element with type, ID, data set, source and target entities lists and direction flag. |
|
ManyToManyRelation(Type type,
UUID id,
IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Initializes element with type, ID, data set, source and target entities lists and direction flag. |
|
ManyToManyRelation(Type type,
UUID id,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Initializes element with type, ID, source and target entities lists and direction flag. |
|
ManyToManyRelation(Type type,
UUID id,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Initializes element with type, ID, source and target entities lists and direction flag. |
|
ManyToManyRelation(UUID id,
IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Creates new many-to-many relation with given ID, data set, source and target entities and direction. |
|
ManyToManyRelation(UUID id,
IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Creates new many-to-many relation with given ID, data set, source and target entities and direction. |
|
ManyToManyRelation(UUID id,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Creates new many-to-many relation with given ID, source and target entities and direction. |
|
ManyToManyRelation(UUID id,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed)
Creates new many-to-many relation with given ID, source and target entities and direction. |
|
OneToOneRelation(Type type,
UUID id,
IReferenceList<IEntity> source,
IReferenceList<IEntity> target,
boolean directed)
Initializes element with given type, ID, source and target entity and direction. |
|
OneToOneRelation(Type type,
UUID id,
IReferenceList<IEntity> source,
IReferenceList<IEntity> target,
boolean directed)
Initializes element with given type, ID, source and target entity and direction. |
|
OneToOneRelation(UUID id,
IReferenceList<IEntity> sources,
IReferenceList<IEntity> targets,
boolean directed)
Creates new one-to-one relation with given ID, source and target entity (in form of lists), direction. |
|
OneToOneRelation(UUID id,
IReferenceList<IEntity> sources,
IReferenceList<IEntity> targets,
boolean directed)
Creates new one-to-one relation with given ID, source and target entity (in form of lists), direction. |
|
TimedManyToManyRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Creates new timed many-to-many relation with given data set, source and target entities, direction, start and end date. |
|
TimedManyToManyRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Creates new timed many-to-many relation with given data set, source and target entities, direction, start and end date. |
|
TimedManyToManyRelation(Type type,
UUID id,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Initializes element with given type, ID, source and target entities, direction, start and end date. |
|
TimedManyToManyRelation(Type type,
UUID id,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Initializes element with given type, ID, source and target entities, direction, start and end date. |
|
TimedManyToManyRelation(UUID id,
IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Creates new timed many-to-many relation with given ID, data set, source and target entities, direction, start and end date. |
|
TimedManyToManyRelation(UUID id,
IGeneralDataSet<? extends IGeneralElement> dataSet,
List<? extends IEntity> sources,
List<? extends IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Creates new timed many-to-many relation with given ID, data set, source and target entities, direction, start and end date. |
|
TimedOneToOneRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
IReferenceList<IEntity> sources,
IReferenceList<IEntity> targets,
boolean directed,
Date date)
Creates new timed one-to-one relation with given data set, source and target entity (lists), direction and date (start == end). |
|
TimedOneToOneRelation(IGeneralDataSet<? extends IGeneralElement> dataSet,
IReferenceList<IEntity> sources,
IReferenceList<IEntity> targets,
boolean directed,
Date date)
Creates new timed one-to-one relation with given data set, source and target entity (lists), direction and date (start == end). |
|
TimedOneToOneRelation(Type type,
UUID id,
IReferenceList<IEntity> sources,
IReferenceList<IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Initializes element with given data set, source and target entity (lists), direction and start and end date. |
|
TimedOneToOneRelation(Type type,
UUID id,
IReferenceList<IEntity> sources,
IReferenceList<IEntity> targets,
boolean directed,
Date startDate,
Date endDate)
Initializes element with given data set, source and target entity (lists), direction and start and end date. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |