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

Public Member Functions

Contact getContact ()
 
void setContact (Contact contact)
 
String getId ()
 
void setId (String id)
 
String getKey ()
 
void setKey (String key)
 
byte[] getValue ()
 
void setValue (byte[] value)
 
Object getObject ()
 
void setObject (Serializable object)
 

Detailed Description

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

Definition at line 36 of file AssociatedObject.java.

Member Function Documentation

◆ getContact()

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

Definition at line 54 of file AssociatedObject.java.

54  {
55  return contact;
56  }

◆ getId()

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

Definition at line 62 of file AssociatedObject.java.

62  {
63  return id;
64  }

◆ getKey()

String org.turro.contacts.AssociatedObject.getKey ( )

Definition at line 70 of file AssociatedObject.java.

70  {
71  return key;
72  }

◆ getObject()

Object org.turro.contacts.AssociatedObject.getObject ( )

Definition at line 88 of file AssociatedObject.java.

88  {
89  GenericObject go = new GenericObject();
90  go.bytesToObject(value);
91  return go.getObject();
92  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getValue()

byte [] org.turro.contacts.AssociatedObject.getValue ( )

Definition at line 78 of file AssociatedObject.java.

78  {
79  return value;
80  }

◆ setContact()

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

Definition at line 58 of file AssociatedObject.java.

58  {
59  this.contact = contact;
60  }
Here is the caller graph for this function:

◆ setId()

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

Definition at line 66 of file AssociatedObject.java.

66  {
67  this.id = id;
68  }

◆ setKey()

void org.turro.contacts.AssociatedObject.setKey ( String  key)

Definition at line 74 of file AssociatedObject.java.

74  {
75  this.key = key;
76  }
Here is the caller graph for this function:

◆ setObject()

void org.turro.contacts.AssociatedObject.setObject ( Serializable  object)

Definition at line 94 of file AssociatedObject.java.

94  {
95  GenericObject go = new GenericObject();
96  go.setObject(object);
97  setValue(go.objectToBytes());
98  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setValue()

void org.turro.contacts.AssociatedObject.setValue ( byte[]  value)

Definition at line 82 of file AssociatedObject.java.

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

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