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

Public Member Functions

 LogRegister (LogType logType, String path, String idUser, String name, Date dateLog, String comment, Object object, int count)
 
LogType getLogType ()
 
String getPath ()
 
String getIdUser ()
 
String getName ()
 
Date getDateLog ()
 
String getComment ()
 
Object getObject ()
 
int getCount ()
 
void setComment (String value)
 

Detailed Description

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

Definition at line 29 of file LogRegister.java.

Constructor & Destructor Documentation

◆ LogRegister()

org.turro.contacts.log.LogRegister.LogRegister ( LogType  logType,
String  path,
String  idUser,
String  name,
Date  dateLog,
String  comment,
Object  object,
int  count 
)

Definition at line 40 of file LogRegister.java.

40  {
41  this.logType = logType;
42  this.path = path;
43  this.idUser = idUser;
44  this.name = name;
45  this.dateLog = dateLog;
46  this.comment = comment;
47  this.object = object;
48  this.count = count;
49  }

Member Function Documentation

◆ getComment()

String org.turro.contacts.log.LogRegister.getComment ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 77 of file LogRegister.java.

77  {
78  return comment;
79  }

◆ getCount()

int org.turro.contacts.log.LogRegister.getCount ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 87 of file LogRegister.java.

87  {
88  return count;
89  }

◆ getDateLog()

Date org.turro.contacts.log.LogRegister.getDateLog ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 72 of file LogRegister.java.

72  {
73  return dateLog;
74  }

◆ getIdUser()

String org.turro.contacts.log.LogRegister.getIdUser ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 62 of file LogRegister.java.

62  {
63  return idUser;
64  }

◆ getLogType()

LogType org.turro.contacts.log.LogRegister.getLogType ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 52 of file LogRegister.java.

52  {
53  return logType;
54  }

◆ getName()

String org.turro.contacts.log.LogRegister.getName ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 67 of file LogRegister.java.

67  {
68  return name;
69  }

◆ getObject()

Object org.turro.contacts.log.LogRegister.getObject ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 82 of file LogRegister.java.

82  {
83  return object;
84  }

◆ getPath()

String org.turro.contacts.log.LogRegister.getPath ( )

Implements org.turro.plugin.log.ILogRegister.

Definition at line 57 of file LogRegister.java.

57  {
58  return path;
59  }

◆ setComment()

void org.turro.contacts.log.LogRegister.setComment ( String  value)

Implements org.turro.plugin.log.ILogRegister.

Definition at line 92 of file LogRegister.java.

92  {
93  comment = value;
94  }

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