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

Public Member Functions

Object getEntity ()
 
void setEntity (Object entity)
 
String getName ()
 
void setName (String name)
 

Detailed Description

Member Function Documentation

◆ getEntity()

Object org.turro.zul.log.LogAnchor.getEntity ( )

Implements org.turro.plugin.log.ILogInfo.

Definition at line 44 of file contacts/src/main/java/org/turro/zul/log/LogAnchor.java.

44  {
45  return entity;
46  }

◆ getName()

String org.turro.zul.log.LogAnchor.getName ( )

Implements org.turro.plugin.log.ILogInfo.

Definition at line 62 of file contacts/src/main/java/org/turro/zul/log/LogAnchor.java.

62  {
63  return name;
64  }

◆ setEntity()

void org.turro.zul.log.LogAnchor.setEntity ( Object  entity)

Implements org.turro.plugin.log.ILogInfo.

Definition at line 49 of file contacts/src/main/java/org/turro/zul/log/LogAnchor.java.

49  {
50  this.entity = entity;
51  if(entity instanceof String) {
52  path = (String) entity;
53  } else {
54  IElephantEntity iee = Entities.getController(entity);
55  path = iee.getPath();
56  pathName = iee.getName();
57  }
58  initializeButton();
59  }
Here is the call graph for this function:

◆ setName()

void org.turro.zul.log.LogAnchor.setName ( String  name)

Implements org.turro.plugin.log.ILogInfo.

Definition at line 67 of file contacts/src/main/java/org/turro/zul/log/LogAnchor.java.

67  {
68  this.name = name;
69  initializeButton();
70  }

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