BrightSide Workbench Full Report + Source Code
org.turro.crm.entity.Technology Class Reference
Inheritance diagram for org.turro.crm.entity.Technology:
Collaboration diagram for org.turro.crm.entity.Technology:

Public Member Functions

long getId ()
 
void setId (long id)
 
String getName ()
 
void setName (String name)
 
boolean isValid ()
 

Detailed Description

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

Definition at line 33 of file Technology.java.

Member Function Documentation

◆ getId()

long org.turro.crm.entity.Technology.getId ( )

Definition at line 42 of file Technology.java.

42  {
43  return id;
44  }

◆ getName()

String org.turro.crm.entity.Technology.getName ( )

Definition at line 50 of file Technology.java.

50  {
51  return name;
52  }
Here is the caller graph for this function:

◆ isValid()

boolean org.turro.crm.entity.Technology.isValid ( )

Definition at line 60 of file Technology.java.

60  {
61  return !Strings.isBlank(name);
62  }
Here is the caller graph for this function:

◆ setId()

void org.turro.crm.entity.Technology.setId ( long  id)

Definition at line 46 of file Technology.java.

46  {
47  this.id = id;
48  }

◆ setName()

void org.turro.crm.entity.Technology.setName ( String  name)

Definition at line 54 of file Technology.java.

54  {
55  this.name = name;
56  }
Here is the caller graph for this function:

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