BrightSide Workbench Full Report + Source Code
org.turro.elephant.entities.db.SystemLog Class Reference
Inheritance diagram for org.turro.elephant.entities.db.SystemLog:
Collaboration diagram for org.turro.elephant.entities.db.SystemLog:

Public Member Functions

Date getDateLog ()
 
void setDateLog (Date dateLog)
 
SystemLogType getLogType ()
 
void setLogType (SystemLogType logType)
 
String getGeneratorPath ()
 
void setGeneratorPath (String generatorPath)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getGeneratorName ()
 
void setGeneratorName (String generatorName)
 
String getEntityName ()
 
void setEntityName (String entityName)
 
String getComment ()
 
void setComment (String comment)
 
byte[] getData ()
 
void setData (byte[] data)
 
int getCounts ()
 
void setCounts (int counts)
 
String getString ()
 
Object getObject ()
 
void setObject (Serializable object)
 

Detailed Description

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

Definition at line 44 of file SystemLog.java.

Member Function Documentation

◆ getComment()

String org.turro.elephant.entities.db.SystemLog.getComment ( )

Definition at line 112 of file SystemLog.java.

112  {
113  return comment;
114  }
Here is the caller graph for this function:

◆ getCounts()

int org.turro.elephant.entities.db.SystemLog.getCounts ( )

Definition at line 128 of file SystemLog.java.

128  {
129  return counts;
130  }
Here is the caller graph for this function:

◆ getData()

byte [] org.turro.elephant.entities.db.SystemLog.getData ( )

Definition at line 120 of file SystemLog.java.

120  {
121  return data;
122  }

◆ getDateLog()

Date org.turro.elephant.entities.db.SystemLog.getDateLog ( )

Definition at line 64 of file SystemLog.java.

64  {
65  return dateLog;
66  }
Here is the caller graph for this function:

◆ getEntityName()

String org.turro.elephant.entities.db.SystemLog.getEntityName ( )

Definition at line 104 of file SystemLog.java.

104  {
105  return entityName;
106  }

◆ getEntityPath()

String org.turro.elephant.entities.db.SystemLog.getEntityPath ( )

Definition at line 88 of file SystemLog.java.

88  {
89  return entityPath;
90  }
Here is the caller graph for this function:

◆ getGeneratorName()

String org.turro.elephant.entities.db.SystemLog.getGeneratorName ( )

Definition at line 96 of file SystemLog.java.

96  {
97  return generatorName;
98  }

◆ getGeneratorPath()

String org.turro.elephant.entities.db.SystemLog.getGeneratorPath ( )

Definition at line 80 of file SystemLog.java.

80  {
81  return generatorPath;
82  }
Here is the caller graph for this function:

◆ getLogType()

SystemLogType org.turro.elephant.entities.db.SystemLog.getLogType ( )

Definition at line 72 of file SystemLog.java.

72  {
73  return logType;
74  }
Here is the caller graph for this function:

◆ getObject()

Object org.turro.elephant.entities.db.SystemLog.getObject ( )

Definition at line 145 of file SystemLog.java.

145  {
146  if(data != null) {
147  GenericObject go = new GenericObject();
148  go.bytesToObject(data);
149  return go.getObject();
150  } else {
151  return null;
152  }
153  }
Here is the call graph for this function:

◆ getString()

String org.turro.elephant.entities.db.SystemLog.getString ( )

Definition at line 138 of file SystemLog.java.

138  {
139  if(data != null && data.length > 0) {
140  return new String(data);
141  }
142  return null;
143  }

◆ setComment()

void org.turro.elephant.entities.db.SystemLog.setComment ( String  comment)

Definition at line 116 of file SystemLog.java.

116  {
117  this.comment = comment;
118  }
Here is the caller graph for this function:

◆ setCounts()

void org.turro.elephant.entities.db.SystemLog.setCounts ( int  counts)

Definition at line 132 of file SystemLog.java.

132  {
133  this.counts = counts;
134  }
Here is the caller graph for this function:

◆ setData()

void org.turro.elephant.entities.db.SystemLog.setData ( byte[]  data)

Definition at line 124 of file SystemLog.java.

124  {
125  this.data = data;
126  }
Here is the caller graph for this function:

◆ setDateLog()

void org.turro.elephant.entities.db.SystemLog.setDateLog ( Date  dateLog)

Definition at line 68 of file SystemLog.java.

68  {
69  this.dateLog = dateLog;
70  }
Here is the caller graph for this function:

◆ setEntityName()

void org.turro.elephant.entities.db.SystemLog.setEntityName ( String  entityName)

Definition at line 108 of file SystemLog.java.

108  {
109  this.entityName = entityName;
110  }
Here is the caller graph for this function:

◆ setEntityPath()

void org.turro.elephant.entities.db.SystemLog.setEntityPath ( String  entityPath)

Definition at line 92 of file SystemLog.java.

92  {
93  this.entityPath = entityPath;
94  }
Here is the caller graph for this function:

◆ setGeneratorName()

void org.turro.elephant.entities.db.SystemLog.setGeneratorName ( String  generatorName)

Definition at line 100 of file SystemLog.java.

100  {
101  this.generatorName = generatorName;
102  }
Here is the caller graph for this function:

◆ setGeneratorPath()

void org.turro.elephant.entities.db.SystemLog.setGeneratorPath ( String  generatorPath)

Definition at line 84 of file SystemLog.java.

84  {
85  this.generatorPath = generatorPath;
86  }
Here is the caller graph for this function:

◆ setLogType()

void org.turro.elephant.entities.db.SystemLog.setLogType ( SystemLogType  logType)

Definition at line 76 of file SystemLog.java.

76  {
77  this.logType = logType;
78  }
Here is the caller graph for this function:

◆ setObject()

void org.turro.elephant.entities.db.SystemLog.setObject ( Serializable  object)

Definition at line 155 of file SystemLog.java.

155  {
156  if(object != null) {
157  GenericObject go = new GenericObject();
158  go.setObject(object);
159  data = go.objectToBytes();
160  } else {
161  data = null;
162  }
163  }
Here is the call graph for this function:
Here is the caller graph for this function:

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