Class: Projects::Model::Defaultfield
- Inherits:
-
Object
- Object
- Projects::Model::Defaultfield
- Defined in:
- lib/projects/model/Defaultfield.rb
Overview
- Defaultfield is used to make an object for projects default field.
Instance Method Summary collapse
-
#getClassificationDetails ⇒ Object
- Get the classification details of the project.
-
#getModuleDetails ⇒ Object
- Get the module details of the project.
-
#getPriorityDetails ⇒ Object
- Get the priority details of the project.
-
#getSeverityDetails ⇒ Object
- Get the severity details of the project.
-
#getStatusDeatils ⇒ Object
- Get the status details of the project.
-
#setClassificationDetails(classificationDetails) ⇒ Object
- Set the classification details of the project.
-
#setModuleDetails(moduleDetails) ⇒ Object
- Set the module details of the project.
-
#setPriorityDetails(priorityDetails) ⇒ Object
- Set the priority details of the project.
-
#setSeverityDetails(severityDetails) ⇒ Object
- Set the severity details of the project.
-
#setStatusDeatils(statusDeatils) ⇒ Object
- Set the stauts details of the project.
Instance Method Details
#getClassificationDetails ⇒ Object
- Get the classification details of the project.
Returns
- Returns list of classification details.
132 133 134 135 136 |
# File 'lib/projects/model/Defaultfield.rb', line 132 def getClassificationDetails return @classificationDetails end |
#getModuleDetails ⇒ Object
- Get the module details of the project.
Returns
- Returns list of module details.
84 85 86 87 88 |
# File 'lib/projects/model/Defaultfield.rb', line 84 def getModuleDetails return @moduleDetails end |
#getPriorityDetails ⇒ Object
- Get the priority details of the project.
Returns
- Returns list of priority details.
108 109 110 111 112 |
# File 'lib/projects/model/Defaultfield.rb', line 108 def getPriorityDetails return @priorityDetails end |
#getSeverityDetails ⇒ Object
- Get the severity details of the project.
Returns
- Returns list of severity details.
36 37 38 39 40 |
# File 'lib/projects/model/Defaultfield.rb', line 36 def getSeverityDetails return @severityDetails end |
#getStatusDeatils ⇒ Object
- Get the status details of the project.
Returns
- Returns list of status details.
60 61 62 63 64 |
# File 'lib/projects/model/Defaultfield.rb', line 60 def getStatusDeatils return @statusDeatils end |
#setClassificationDetails(classificationDetails) ⇒ Object
- Set the classification details of the project.
Parameters
- * classificationDetails
- List of Classification details of the project.
120 121 122 123 124 |
# File 'lib/projects/model/Defaultfield.rb', line 120 def setClassificationDetails(classificationDetails) @classificationDetails = classificationDetails end |
#setModuleDetails(moduleDetails) ⇒ Object
- Set the module details of the project.
Parameters
- * moduleDetails
- List of Module details of the project.
72 73 74 75 76 |
# File 'lib/projects/model/Defaultfield.rb', line 72 def setModuleDetails(moduleDetails) @moduleDetails = moduleDetails end |
#setPriorityDetails(priorityDetails) ⇒ Object
- Set the priority details of the project.
Parameters
- * priorityDetails
- List of Priority details of the project.
96 97 98 99 100 |
# File 'lib/projects/model/Defaultfield.rb', line 96 def setPriorityDetails(priorityDetails) @priorityDetails = priorityDetails end |
#setSeverityDetails(severityDetails) ⇒ Object
- Set the severity details of the project.
Parameters
- * severityDetails
- List of Severity details of the project.
24 25 26 27 28 |
# File 'lib/projects/model/Defaultfield.rb', line 24 def setSeverityDetails(severityDetails) @severityDetails = severityDetails end |
#setStatusDeatils(statusDeatils) ⇒ Object
- Set the stauts details of the project.
Prameters
- * statusDeatils
- List of Stauts details of the project.
48 49 50 51 52 |
# File 'lib/projects/model/Defaultfield.rb', line 48 def setStatusDeatils(statusDeatils) @statusDeatils = statusDeatils end |