BrightSide Workbench Full Report + Source Code
org.turro.zul.convocation.ConvocationWrapper Class Reference
Inheritance diagram for org.turro.zul.convocation.ConvocationWrapper:
Collaboration diagram for org.turro.zul.convocation.ConvocationWrapper:

Public Member Functions

 ConvocationWrapper (Convocation entity)
 
String getTabLabel ()
 
String getSelfLabel ()
 
String getTooltiptext ()
 
- Public Member Functions inherited from org.turro.jpa.entity.DaoEntity< T extends IDaoEntity, ID extends Serializable >
 DaoEntity ()
 
 DaoEntity (Class< T > persistentClass)
 
 DaoEntity (T entity)
 
Dao getDao ()
 
getEntity ()
 
IElephantEntity getIee ()
 
find (ID id)
 
save ()
 
boolean delete ()
 
ID getId ()
 
List< String > getMessages ()
 
boolean canDelete ()
 
boolean canSave ()
 
boolean equals (Object obj)
 
int hashCode ()
 

Protected Member Functions

Dao createDao ()
 
boolean shouldLog ()
 
- Protected Member Functions inherited from org.turro.jpa.entity.DaoEntity< T extends IDaoEntity, ID extends Serializable >
void logEntity (SystemLogType logType, Object entity, String action, String data)
 
String dataEntity (Object entity)
 
void initOperation ()
 
void addMessage (String message)
 

Additional Inherited Members

- Static Public Member Functions inherited from org.turro.jpa.entity.DaoEntity< T extends IDaoEntity, ID extends Serializable >
static Object getEntityId (Object entity)
 
static boolean isNewId (Object id)
 
- Protected Attributes inherited from org.turro.jpa.entity.DaoEntity< T extends IDaoEntity, ID extends Serializable >
entity
 
ID id
 
List< String > messages = new ArrayList<>()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 31 of file ConvocationWrapper.java.

Constructor & Destructor Documentation

◆ ConvocationWrapper()

org.turro.zul.convocation.ConvocationWrapper.ConvocationWrapper ( Convocation  entity)

Definition at line 33 of file ConvocationWrapper.java.

33  {
34  super(entity);
35  }

Member Function Documentation

◆ createDao()

Dao org.turro.zul.convocation.ConvocationWrapper.createDao ( )
protected

Reimplemented from org.turro.jpa.entity.DaoEntity< T extends IDaoEntity, ID extends Serializable >.

Definition at line 50 of file ConvocationWrapper.java.

50  {
51  return new ContactsPU();
52  }

◆ getSelfLabel()

String org.turro.zul.convocation.ConvocationWrapper.getSelfLabel ( )

Definition at line 41 of file ConvocationWrapper.java.

41  {
42  return I_.get("Convocation");
43  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getTabLabel()

String org.turro.zul.convocation.ConvocationWrapper.getTabLabel ( )

Definition at line 37 of file ConvocationWrapper.java.

37  {
38  return getSelfLabel() + (entity.getId() == null ? "" : " #" + entity.getId());
39  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getTooltiptext()

String org.turro.zul.convocation.ConvocationWrapper.getTooltiptext ( )

Definition at line 45 of file ConvocationWrapper.java.

45  {
46  return entity.getName();
47  }
Here is the caller graph for this function:

◆ shouldLog()

boolean org.turro.zul.convocation.ConvocationWrapper.shouldLog ( )
protected

Reimplemented from org.turro.jpa.entity.DaoEntity< T extends IDaoEntity, ID extends Serializable >.

Definition at line 55 of file ConvocationWrapper.java.

55  {
56  return false;
57  }

The documentation for this class was generated from the following file: