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

Public Member Functions

String getId ()
 
void setId (String id)
 
String getZipCode ()
 
void setZipCode (String zipCode)
 
int getCommuting ()
 
void setCommuting (int commuting)
 
boolean isAvailable ()
 
void setAvailable (boolean available)
 
boolean isOnline ()
 
void setOnline (boolean online)
 
Date getUpdateDate ()
 
void setUpdateDate (Date updateDate)
 
Contact getContact ()
 
void setContact (Contact contact)
 

Detailed Description

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

Definition at line 35 of file JobBoard.java.

Member Function Documentation

◆ getCommuting()

int org.turro.contacts.JobBoard.getCommuting ( )

Definition at line 68 of file JobBoard.java.

68  {
69  return commuting;
70  }

◆ getContact()

Contact org.turro.contacts.JobBoard.getContact ( )

Definition at line 100 of file JobBoard.java.

100  {
101  return contact;
102  }

◆ getId()

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

Definition at line 52 of file JobBoard.java.

52  {
53  return id;
54  }

◆ getUpdateDate()

Date org.turro.contacts.JobBoard.getUpdateDate ( )

Definition at line 92 of file JobBoard.java.

92  {
93  return updateDate;
94  }

◆ getZipCode()

String org.turro.contacts.JobBoard.getZipCode ( )

Definition at line 60 of file JobBoard.java.

60  {
61  return zipCode;
62  }
Here is the caller graph for this function:

◆ isAvailable()

boolean org.turro.contacts.JobBoard.isAvailable ( )

Definition at line 76 of file JobBoard.java.

76  {
77  return available;
78  }

◆ isOnline()

boolean org.turro.contacts.JobBoard.isOnline ( )

Definition at line 84 of file JobBoard.java.

84  {
85  return online;
86  }

◆ setAvailable()

void org.turro.contacts.JobBoard.setAvailable ( boolean  available)

Definition at line 80 of file JobBoard.java.

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

◆ setCommuting()

void org.turro.contacts.JobBoard.setCommuting ( int  commuting)

Definition at line 72 of file JobBoard.java.

72  {
73  this.commuting = commuting;
74  }
Here is the caller graph for this function:

◆ setContact()

void org.turro.contacts.JobBoard.setContact ( Contact  contact)

Definition at line 104 of file JobBoard.java.

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

◆ setId()

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

Definition at line 56 of file JobBoard.java.

56  {
57  this.id = id;
58  }

◆ setOnline()

void org.turro.contacts.JobBoard.setOnline ( boolean  online)

Definition at line 88 of file JobBoard.java.

88  {
89  this.online = online;
90  }
Here is the caller graph for this function:

◆ setUpdateDate()

void org.turro.contacts.JobBoard.setUpdateDate ( Date  updateDate)

Definition at line 96 of file JobBoard.java.

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

◆ setZipCode()

void org.turro.contacts.JobBoard.setZipCode ( String  zipCode)

Definition at line 64 of file JobBoard.java.

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

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