BrightSide Workbench Full Report + Source Code
org.turro.command.LabelControl Class Reference
Inheritance diagram for org.turro.command.LabelControl:
Collaboration diagram for org.turro.command.LabelControl:

Classes

class  ClickListener
 

Public Member Functions

 LabelControl ()
 
 LabelControl (Object entity)
 
 LabelControl (Object entity, boolean linkEntity)
 
Object getEntity ()
 
void setEntity (Object entity)
 
boolean isLinkEntity ()
 
void setLinkEntity (boolean linkEntity)
 
int getMaxChars ()
 
void setMaxChars (int maxChars)
 
void generate ()
 
void afterCompose ()
 
void setContext (Popup popup)
 

Protected Attributes

Object entity
 

Detailed Description

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

Definition at line 36 of file LabelControl.java.

Constructor & Destructor Documentation

◆ LabelControl() [1/3]

org.turro.command.LabelControl.LabelControl ( )

Definition at line 55 of file LabelControl.java.

55  {
56  }

◆ LabelControl() [2/3]

org.turro.command.LabelControl.LabelControl ( Object  entity)

Definition at line 58 of file LabelControl.java.

58  {
59  this.entity = entity;
60  }

◆ LabelControl() [3/3]

org.turro.command.LabelControl.LabelControl ( Object  entity,
boolean  linkEntity 
)

Definition at line 62 of file LabelControl.java.

62  {
63  this.entity = entity;
64  this.linkEntity = linkEntity;
65  }

Member Function Documentation

◆ afterCompose()

void org.turro.command.LabelControl.afterCompose ( )

Definition at line 110 of file LabelControl.java.

110  {
111  generate();
112  }
Here is the call graph for this function:

◆ generate()

void org.turro.command.LabelControl.generate ( )

Reimplemented in org.turro.financials.command.DocumentLabel.

Definition at line 91 of file LabelControl.java.

91  {
92  createComponents();
93  }
Here is the caller graph for this function:

◆ getEntity()

Object org.turro.command.LabelControl.getEntity ( )

Definition at line 67 of file LabelControl.java.

67  {
68  return entity;
69  }
Here is the caller graph for this function:

◆ getMaxChars()

int org.turro.command.LabelControl.getMaxChars ( )

Definition at line 83 of file LabelControl.java.

83  {
84  return maxChars;
85  }

◆ isLinkEntity()

boolean org.turro.command.LabelControl.isLinkEntity ( )

Definition at line 75 of file LabelControl.java.

75  {
76  return linkEntity;
77  }

◆ setContext()

void org.turro.command.LabelControl.setContext ( Popup  popup)

Definition at line 115 of file LabelControl.java.

115  {
116  super.setContext(popup);
117  _popup = popup;
118  }
Here is the caller graph for this function:

◆ setEntity()

void org.turro.command.LabelControl.setEntity ( Object  entity)

Definition at line 71 of file LabelControl.java.

71  {
72  this.entity = entity;
73  }
Here is the caller graph for this function:

◆ setLinkEntity()

void org.turro.command.LabelControl.setLinkEntity ( boolean  linkEntity)

Definition at line 79 of file LabelControl.java.

79  {
80  this.linkEntity = linkEntity;
81  }

◆ setMaxChars()

void org.turro.command.LabelControl.setMaxChars ( int  maxChars)

Definition at line 87 of file LabelControl.java.

87  {
88  this.maxChars = maxChars;
89  }

Member Data Documentation

◆ entity

Object org.turro.command.LabelControl.entity
protected

Definition at line 38 of file LabelControl.java.


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