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

Public Member Functions

boolean isAllowNew ()
 
void setAllowNew (boolean allowNew)
 
boolean isAllowEdit ()
 
void setAllowEdit (boolean allowEdit)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
void setEntity (Object entity)
 
void afterCompose ()
 

Detailed Description

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

Definition at line 34 of file GroupedControl.java.

Member Function Documentation

◆ afterCompose()

void org.turro.zul.groupit.GroupedControl.afterCompose ( )

Definition at line 68 of file GroupedControl.java.

68  {
69  showGroups();
70  addEventListener(Events.ON_CHANGE, new EventListener<Event>() {
71  @Override
72  public void onEvent(Event event) throws Exception {
73  showGroups();
74  }
75  });
76  }

◆ getEntityPath()

String org.turro.zul.groupit.GroupedControl.getEntityPath ( )

Definition at line 55 of file GroupedControl.java.

55  {
56  return entityPath;
57  }

◆ isAllowEdit()

boolean org.turro.zul.groupit.GroupedControl.isAllowEdit ( )

Definition at line 47 of file GroupedControl.java.

47  {
48  return allowEdit;
49  }

◆ isAllowNew()

boolean org.turro.zul.groupit.GroupedControl.isAllowNew ( )

Definition at line 39 of file GroupedControl.java.

39  {
40  return allowNew;
41  }

◆ setAllowEdit()

void org.turro.zul.groupit.GroupedControl.setAllowEdit ( boolean  allowEdit)

Definition at line 51 of file GroupedControl.java.

51  {
52  this.allowEdit = allowEdit;
53  }

◆ setAllowNew()

void org.turro.zul.groupit.GroupedControl.setAllowNew ( boolean  allowNew)

Definition at line 43 of file GroupedControl.java.

43  {
44  this.allowNew = allowNew;
45  }

◆ setEntity()

void org.turro.zul.groupit.GroupedControl.setEntity ( Object  entity)

Definition at line 63 of file GroupedControl.java.

63  {
64  setEntityPath(Entities.getController(entity).getPath());
65  }
void setEntityPath(String entityPath)
Here is the call graph for this function:

◆ setEntityPath()

void org.turro.zul.groupit.GroupedControl.setEntityPath ( String  entityPath)

Definition at line 59 of file GroupedControl.java.

59  {
60  this.entityPath = entityPath;
61  }
Here is the caller graph for this function:

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