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

Public Member Functions

String getComment ()
 
void setComment (String comment)
 
byte[] getData ()
 
void setData (byte[] data)
 
Date getDateLog ()
 
void setDateLog (Date dateLog)
 
String getId ()
 
void setId (String id)
 
String getIdUser ()
 
void setIdUser (String idUser)
 
LogType getLogType ()
 
void setLogType (LogType logType)
 
String getName ()
 
void setName (String name)
 
String getPath ()
 
void setPath (String path)
 
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 37 of file LogEntry.java.

Member Function Documentation

◆ getComment()

String org.turro.contacts.LogEntry.getComment ( )

Definition at line 61 of file LogEntry.java.

61  {
62  return comment;
63  }

◆ getData()

byte [] org.turro.contacts.LogEntry.getData ( )

Definition at line 69 of file LogEntry.java.

69  {
70  return data;
71  }

◆ getDateLog()

Date org.turro.contacts.LogEntry.getDateLog ( )

Definition at line 77 of file LogEntry.java.

77  {
78  return dateLog;
79  }

◆ getId()

String org.turro.contacts.LogEntry.getId ( )

Definition at line 85 of file LogEntry.java.

85  {
86  return id;
87  }

◆ getIdUser()

String org.turro.contacts.LogEntry.getIdUser ( )

Definition at line 93 of file LogEntry.java.

93  {
94  return idUser;
95  }

◆ getLogType()

LogType org.turro.contacts.LogEntry.getLogType ( )

Definition at line 101 of file LogEntry.java.

101  {
102  return logType;
103  }

◆ getName()

String org.turro.contacts.LogEntry.getName ( )

Definition at line 109 of file LogEntry.java.

109  {
110  return name;
111  }

◆ getObject()

Object org.turro.contacts.LogEntry.getObject ( )

Definition at line 127 of file LogEntry.java.

127  {
128  if(data != null) {
129  GenericObject go = new GenericObject();
130  go.bytesToObject(data);
131  return go.getObject();
132  } else {
133  return null;
134  }
135  }
Here is the call graph for this function:

◆ getPath()

String org.turro.contacts.LogEntry.getPath ( )

Definition at line 117 of file LogEntry.java.

117  {
118  return path;
119  }

◆ setComment()

void org.turro.contacts.LogEntry.setComment ( String  comment)

Definition at line 65 of file LogEntry.java.

65  {
66  this.comment = comment;
67  }
Here is the caller graph for this function:

◆ setData()

void org.turro.contacts.LogEntry.setData ( byte[]  data)

Definition at line 73 of file LogEntry.java.

73  {
74  this.data = data;
75  }

◆ setDateLog()

void org.turro.contacts.LogEntry.setDateLog ( Date  dateLog)

Definition at line 81 of file LogEntry.java.

81  {
82  this.dateLog = dateLog;
83  }
Here is the caller graph for this function:

◆ setId()

void org.turro.contacts.LogEntry.setId ( String  id)

Definition at line 89 of file LogEntry.java.

89  {
90  this.id = id;
91  }

◆ setIdUser()

void org.turro.contacts.LogEntry.setIdUser ( String  idUser)

Definition at line 97 of file LogEntry.java.

97  {
98  this.idUser = idUser;
99  }
Here is the caller graph for this function:

◆ setLogType()

void org.turro.contacts.LogEntry.setLogType ( LogType  logType)

Definition at line 105 of file LogEntry.java.

105  {
106  this.logType = logType;
107  }
Here is the caller graph for this function:

◆ setName()

void org.turro.contacts.LogEntry.setName ( String  name)

Definition at line 113 of file LogEntry.java.

113  {
114  this.name = name;
115  }
Here is the caller graph for this function:

◆ setObject()

void org.turro.contacts.LogEntry.setObject ( Serializable  object)

Definition at line 137 of file LogEntry.java.

137  {
138  if(object != null) {
139  GenericObject go = new GenericObject();
140  go.setObject(object);
141  data = go.objectToBytes();
142  } else {
143  data = null;
144  }
145  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setPath()

void org.turro.contacts.LogEntry.setPath ( String  path)

Definition at line 121 of file LogEntry.java.

121  {
122  this.path = path;
123  }
Here is the caller graph for this function:

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