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

Public Member Functions

Contact getContact ()
 
void setContact (Contact contact)
 
FieldDef getFieldDef ()
 
void setFieldDef (FieldDef fieldDef)
 
String getId ()
 
void setId (String id)
 
String getValue ()
 
void setValue (String value)
 
void setObjectValue (Object obj)
 
Object getObjectValue ()
 

Detailed Description

Member Function Documentation

◆ getContact()

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

Definition at line 51 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

51  {
52  return contact;
53  }

◆ getFieldDef()

FieldDef org.turro.contacts.FieldValue.getFieldDef ( )

Definition at line 59 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

59  {
60  return fieldDef;
61  }
Here is the caller graph for this function:

◆ getId()

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

Definition at line 67 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

67  {
68  return id;
69  }

◆ getObjectValue()

Object org.turro.contacts.FieldValue.getObjectValue ( )

Definition at line 89 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

89  {
90  return ObjectString.parseNativeString(value, fieldDef.getJavaClass(), false);
91  }
Here is the caller graph for this function:

◆ getValue()

String org.turro.contacts.FieldValue.getValue ( )

Definition at line 75 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

75  {
76  return value;
77  }
Here is the caller graph for this function:

◆ setContact()

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

Definition at line 55 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

55  {
56  this.contact = contact;
57  }

◆ setFieldDef()

void org.turro.contacts.FieldValue.setFieldDef ( FieldDef  fieldDef)

Definition at line 63 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

63  {
64  this.fieldDef = fieldDef;
65  }

◆ setId()

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

Definition at line 71 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

71  {
72  this.id = id;
73  }

◆ setObjectValue()

void org.turro.contacts.FieldValue.setObjectValue ( Object  obj)

Definition at line 85 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

85  {
86  value = ObjectString.formatNativeObject(obj, false);
87  }

◆ setValue()

void org.turro.contacts.FieldValue.setValue ( String  value)

Definition at line 79 of file contacts/src/main/java/org/turro/contacts/FieldValue.java.

79  {
80  this.value = value;
81  }

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