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

Public Member Functions

String getId ()
 
void setId (String id)
 
String getName ()
 
void setName (String name)
 
String getEmail ()
 
void setEmail (String email)
 
String getComment ()
 
void setComment (String comment)
 
boolean isConfirmed ()
 
void setConfirmed (boolean confirmed)
 
String getValueMap ()
 
void setValueMap (String valueMap)
 
boolean isValid ()
 
KeyValueMap getValues () throws ParserException
 

Detailed Description

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

Definition at line 36 of file SignUp.java.

Member Function Documentation

◆ getComment()

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

Definition at line 78 of file SignUp.java.

78  {
79  return comment;
80  }

◆ getEmail()

String org.turro.contacts.SignUp.getEmail ( )

Definition at line 70 of file SignUp.java.

70  {
71  return email;
72  }
Here is the caller graph for this function:

◆ getId()

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

Definition at line 54 of file SignUp.java.

54  {
55  return id;
56  }

◆ getName()

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

Definition at line 62 of file SignUp.java.

62  {
63  return name;
64  }

◆ getValueMap()

String org.turro.contacts.SignUp.getValueMap ( )

Definition at line 94 of file SignUp.java.

94  {
95  return valueMap;
96  }

◆ getValues()

KeyValueMap org.turro.contacts.SignUp.getValues ( ) throws ParserException

Definition at line 109 of file SignUp.java.

109  {
110  return new KeyValueMap(valueMap);
111  }

◆ isConfirmed()

boolean org.turro.contacts.SignUp.isConfirmed ( )

Definition at line 86 of file SignUp.java.

86  {
87  return confirmed;
88  }
Here is the caller graph for this function:

◆ isValid()

boolean org.turro.contacts.SignUp.isValid ( )

Definition at line 104 of file SignUp.java.

104  {
105  return !Strings.isBlank(name) &&
106  !Strings.isBlank(email);
107  }
Here is the caller graph for this function:

◆ setComment()

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

Definition at line 82 of file SignUp.java.

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

◆ setConfirmed()

void org.turro.contacts.SignUp.setConfirmed ( boolean  confirmed)

Definition at line 90 of file SignUp.java.

90  {
91  this.confirmed = confirmed;
92  }
Here is the caller graph for this function:

◆ setEmail()

void org.turro.contacts.SignUp.setEmail ( String  email)

Definition at line 74 of file SignUp.java.

74  {
75  this.email = email == null ? null : email.toLowerCase();
76  }
Here is the caller graph for this function:

◆ setId()

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

Definition at line 58 of file SignUp.java.

58  {
59  this.id = id;
60  }

◆ setName()

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

Definition at line 66 of file SignUp.java.

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

◆ setValueMap()

void org.turro.contacts.SignUp.setValueMap ( String  valueMap)

Definition at line 98 of file SignUp.java.

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

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