BrightSide Workbench Full Report + Source Code
org.turro.calendar.event.UserCalendarEvent Class Reference
Inheritance diagram for org.turro.calendar.event.UserCalendarEvent:
Collaboration diagram for org.turro.calendar.event.UserCalendarEvent:

Public Member Functions

 UserCalendarEvent (ICalendarEvent delegate)
 
String getPath ()
 
void setPath (String path)
 
String getEventId ()
 
void setEventId (String eventId)
 
Date getBeginDate ()
 
Date getEndDate ()
 
String getTitle ()
 
String getContent ()
 
String getMotive ()
 
String getHeaderColor ()
 
String getContentColor ()
 
String getZclass ()
 
boolean isLocked ()
 
boolean isDone ()
 
void setBeginDate (Date date)
 
void setEndDate (Date date)
 
void setTitle (String title)
 
void setContent (String content)
 
void setMotive (String motive)
 
void setHeaderColor (String hc)
 
void setContentColor (String cc)
 
void setLocked (boolean locked)
 
void setDone (boolean done)
 
boolean isCancelled ()
 
void setCancelled (boolean cancelled)
 
IContact getOrganizer ()
 
Collection< IContactgetAttendees ()
 
void setOrganizer (IContact contact)
 
void addAttendee (IContact contact)
 
String getAddress ()
 
void setAddress (String address)
 

Protected Attributes

ICalendarEvent delegate
 

Detailed Description

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

Definition at line 31 of file UserCalendarEvent.java.

Constructor & Destructor Documentation

◆ UserCalendarEvent()

org.turro.calendar.event.UserCalendarEvent.UserCalendarEvent ( ICalendarEvent  delegate)

Definition at line 35 of file UserCalendarEvent.java.

35  {
36  this.delegate = delegate;
37  }

Member Function Documentation

◆ addAttendee()

void org.turro.calendar.event.UserCalendarEvent.addAttendee ( IContact  contact)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 180 of file UserCalendarEvent.java.

180  {
181  delegate.addAttendee(contact);
182  }
Here is the call graph for this function:

◆ getAddress()

String org.turro.calendar.event.UserCalendarEvent.getAddress ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 185 of file UserCalendarEvent.java.

185  {
186  return delegate.getAddress();
187  }
Here is the call graph for this function:

◆ getAttendees()

Collection<IContact> org.turro.calendar.event.UserCalendarEvent.getAttendees ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 170 of file UserCalendarEvent.java.

170  {
171  return delegate.getAttendees();
172  }
Collection< IContact > getAttendees()
Here is the call graph for this function:

◆ getBeginDate()

Date org.turro.calendar.event.UserCalendarEvent.getBeginDate ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 60 of file UserCalendarEvent.java.

60  {
61  return delegate.getBeginDate();
62  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getContent()

String org.turro.calendar.event.UserCalendarEvent.getContent ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 75 of file UserCalendarEvent.java.

75  {
76  return delegate.getContent();
77  }
Here is the call graph for this function:

◆ getContentColor()

String org.turro.calendar.event.UserCalendarEvent.getContentColor ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 90 of file UserCalendarEvent.java.

90  {
91  return delegate.getContentColor();
92  }
Here is the call graph for this function:

◆ getEndDate()

Date org.turro.calendar.event.UserCalendarEvent.getEndDate ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 65 of file UserCalendarEvent.java.

65  {
66  return delegate.getEndDate();
67  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getEventId()

String org.turro.calendar.event.UserCalendarEvent.getEventId ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 50 of file UserCalendarEvent.java.

50  {
51  return delegate.getEventId();
52  }
Here is the call graph for this function:

◆ getHeaderColor()

String org.turro.calendar.event.UserCalendarEvent.getHeaderColor ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 85 of file UserCalendarEvent.java.

85  {
86  return delegate.getHeaderColor();
87  }
Here is the call graph for this function:

◆ getMotive()

String org.turro.calendar.event.UserCalendarEvent.getMotive ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 80 of file UserCalendarEvent.java.

80  {
81  return delegate.getMotive();
82  }
Here is the call graph for this function:

◆ getOrganizer()

IContact org.turro.calendar.event.UserCalendarEvent.getOrganizer ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 165 of file UserCalendarEvent.java.

165  {
166  return delegate.getOrganizer();
167  }
Here is the call graph for this function:

◆ getPath()

String org.turro.calendar.event.UserCalendarEvent.getPath ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 40 of file UserCalendarEvent.java.

40  {
41  return delegate.getPath();
42  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getTitle()

String org.turro.calendar.event.UserCalendarEvent.getTitle ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 70 of file UserCalendarEvent.java.

70  {
71  return delegate.getTitle();
72  }
Here is the call graph for this function:

◆ getZclass()

String org.turro.calendar.event.UserCalendarEvent.getZclass ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 95 of file UserCalendarEvent.java.

95  {
96  return delegate.getZclass();
97  }
Here is the call graph for this function:

◆ isCancelled()

boolean org.turro.calendar.event.UserCalendarEvent.isCancelled ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 155 of file UserCalendarEvent.java.

155  {
156  return delegate.isCancelled();
157  }
Here is the call graph for this function:

◆ isDone()

boolean org.turro.calendar.event.UserCalendarEvent.isDone ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 105 of file UserCalendarEvent.java.

105  {
106  return delegate.isDone();
107  }
Here is the call graph for this function:

◆ isLocked()

boolean org.turro.calendar.event.UserCalendarEvent.isLocked ( )

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 100 of file UserCalendarEvent.java.

100  {
101  return delegate.isLocked();
102  }
Here is the call graph for this function:

◆ setAddress()

void org.turro.calendar.event.UserCalendarEvent.setAddress ( String  address)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 190 of file UserCalendarEvent.java.

190  {
191  delegate.setAddress(address);
192  }
Here is the call graph for this function:

◆ setBeginDate()

void org.turro.calendar.event.UserCalendarEvent.setBeginDate ( Date  date)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 110 of file UserCalendarEvent.java.

110  {
111  delegate.setBeginDate(date);
112  }
Here is the call graph for this function:

◆ setCancelled()

void org.turro.calendar.event.UserCalendarEvent.setCancelled ( boolean  cancelled)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 160 of file UserCalendarEvent.java.

160  {
161  delegate.setCancelled(cancelled);
162  }
void setCancelled(boolean cancelled)
Here is the call graph for this function:

◆ setContent()

void org.turro.calendar.event.UserCalendarEvent.setContent ( String  content)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 125 of file UserCalendarEvent.java.

125  {
126  delegate.setContent(content);
127  }
Here is the call graph for this function:

◆ setContentColor()

void org.turro.calendar.event.UserCalendarEvent.setContentColor ( String  cc)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 140 of file UserCalendarEvent.java.

140  {
142  }
Here is the call graph for this function:

◆ setDone()

void org.turro.calendar.event.UserCalendarEvent.setDone ( boolean  done)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 150 of file UserCalendarEvent.java.

150  {
151  delegate.setDone(done);
152  }
Here is the call graph for this function:

◆ setEndDate()

void org.turro.calendar.event.UserCalendarEvent.setEndDate ( Date  date)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 115 of file UserCalendarEvent.java.

115  {
116  delegate.setEndDate(date);
117  }
Here is the call graph for this function:

◆ setEventId()

void org.turro.calendar.event.UserCalendarEvent.setEventId ( String  eventId)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 55 of file UserCalendarEvent.java.

55  {
56  delegate.setEventId(eventId);
57  }
Here is the call graph for this function:

◆ setHeaderColor()

void org.turro.calendar.event.UserCalendarEvent.setHeaderColor ( String  hc)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 135 of file UserCalendarEvent.java.

135  {
137  }
Here is the call graph for this function:

◆ setLocked()

void org.turro.calendar.event.UserCalendarEvent.setLocked ( boolean  locked)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 145 of file UserCalendarEvent.java.

145  {
146  delegate.setLocked(locked);
147  }
Here is the call graph for this function:

◆ setMotive()

void org.turro.calendar.event.UserCalendarEvent.setMotive ( String  motive)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 130 of file UserCalendarEvent.java.

130  {
131  delegate.setMotive(motive);
132  }
Here is the call graph for this function:

◆ setOrganizer()

void org.turro.calendar.event.UserCalendarEvent.setOrganizer ( IContact  contact)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 175 of file UserCalendarEvent.java.

175  {
176  delegate.setOrganizer(contact);
177  }
Here is the call graph for this function:

◆ setPath()

void org.turro.calendar.event.UserCalendarEvent.setPath ( String  path)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 45 of file UserCalendarEvent.java.

45  {
46  delegate.setPath(path);
47  }
Here is the call graph for this function:

◆ setTitle()

void org.turro.calendar.event.UserCalendarEvent.setTitle ( String  title)

Implements org.turro.plugin.calendar.ICalendarEvent.

Definition at line 120 of file UserCalendarEvent.java.

120  {
121  delegate.setTitle(title);
122  }
Here is the call graph for this function:

Member Data Documentation

◆ delegate

ICalendarEvent org.turro.calendar.event.UserCalendarEvent.delegate
protected

Definition at line 33 of file UserCalendarEvent.java.


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