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

Public Member Functions

String getId ()
 
void setId (String id)
 
String getName ()
 
void setName (String name)
 
String getPath ()
 
void setPath (String path)
 
Class getJavaClass ()
 
void setJavaClass (Class javaClass)
 
int getOrder ()
 
void setOrder (int order)
 
boolean isDescription ()
 
void setDescription (boolean description)
 
boolean isPublishable ()
 
void setPublishable (boolean publishable)
 
boolean isComposite ()
 
void setComposite (boolean composite)
 
boolean isSearchable ()
 
void setSearchable (boolean searchable)
 
boolean isValid ()
 
ValueIt createValue ()
 

Detailed Description

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

Definition at line 34 of file FieldIt.java.

Member Function Documentation

◆ createValue()

ValueIt org.turro.contacts.FieldIt.createValue ( )

Definition at line 137 of file FieldIt.java.

137  {
138  ValueIt v = new ValueIt();
139  v.setFieldIt(this);
140  return v;
141  }
Here is the call graph for this function:

◆ getId()

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

Definition at line 57 of file FieldIt.java.

57  {
58  return id;
59  }
Here is the caller graph for this function:

◆ getJavaClass()

Class org.turro.contacts.FieldIt.getJavaClass ( )

Definition at line 81 of file FieldIt.java.

81  {
82  return javaClass;
83  }
Here is the caller graph for this function:

◆ getName()

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

Definition at line 65 of file FieldIt.java.

65  {
66  return name;
67  }
Here is the caller graph for this function:

◆ getOrder()

int org.turro.contacts.FieldIt.getOrder ( )

Definition at line 89 of file FieldIt.java.

89  {
90  return order;
91  }
Here is the caller graph for this function:

◆ getPath()

String org.turro.contacts.FieldIt.getPath ( )

Definition at line 73 of file FieldIt.java.

73  {
74  return path;
75  }

◆ isComposite()

boolean org.turro.contacts.FieldIt.isComposite ( )

Definition at line 113 of file FieldIt.java.

113  {
114  return composite;
115  }

◆ isDescription()

boolean org.turro.contacts.FieldIt.isDescription ( )

Definition at line 97 of file FieldIt.java.

97  {
98  return description;
99  }
Here is the caller graph for this function:

◆ isPublishable()

boolean org.turro.contacts.FieldIt.isPublishable ( )

Definition at line 105 of file FieldIt.java.

105  {
106  return publishable;
107  }
Here is the caller graph for this function:

◆ isSearchable()

boolean org.turro.contacts.FieldIt.isSearchable ( )

Definition at line 121 of file FieldIt.java.

121  {
122  return searchable;
123  }

◆ isValid()

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

Definition at line 131 of file FieldIt.java.

131  {
132  return !Strings.isBlank(name) &&
133  !Strings.isBlank(path) &&
134  javaClass != null;
135  }
Here is the caller graph for this function:

◆ setComposite()

void org.turro.contacts.FieldIt.setComposite ( boolean  composite)

Definition at line 117 of file FieldIt.java.

117  {
118  this.composite = composite;
119  }

◆ setDescription()

void org.turro.contacts.FieldIt.setDescription ( boolean  description)

Definition at line 101 of file FieldIt.java.

101  {
102  this.description = description;
103  }
Here is the caller graph for this function:

◆ setId()

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

Definition at line 61 of file FieldIt.java.

61  {
62  this.id = id;
63  }

◆ setJavaClass()

void org.turro.contacts.FieldIt.setJavaClass ( Class  javaClass)

Definition at line 85 of file FieldIt.java.

85  {
86  this.javaClass = javaClass;
87  }

◆ setName()

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

Definition at line 69 of file FieldIt.java.

69  {
70  this.name = name;
71  }

◆ setOrder()

void org.turro.contacts.FieldIt.setOrder ( int  order)

Definition at line 93 of file FieldIt.java.

93  {
94  this.order = order;
95  }

◆ setPath()

void org.turro.contacts.FieldIt.setPath ( String  path)

Definition at line 77 of file FieldIt.java.

77  {
78  this.path = path;
79  }
Here is the caller graph for this function:

◆ setPublishable()

void org.turro.contacts.FieldIt.setPublishable ( boolean  publishable)

Definition at line 109 of file FieldIt.java.

109  {
110  this.publishable = publishable;
111  }
Here is the caller graph for this function:

◆ setSearchable()

void org.turro.contacts.FieldIt.setSearchable ( boolean  searchable)

Definition at line 125 of file FieldIt.java.

125  {
126  this.searchable = searchable;
127  }
Here is the caller graph for this function:

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