Class: FCSParse::FCSParam
- Inherits:
-
Object
- Object
- FCSParse::FCSParam
- Defined in:
- lib/fcsparse/fcsevent.rb
Overview
Class representing a single parameter and its value in a single event.
Instance Attribute Summary (collapse)
-
- (Object) description
Returns the value of attribute description.
-
- (Object) limit
Returns the value of attribute limit.
-
- (Object) name
Returns the value of attribute name.
-
- (Object) value
Returns the value of attribute value.
Instance Method Summary (collapse)
-
- (FCSParam) initialize(name, description, value, limit)
constructor
Create a new parameter with specified information.
Constructor Details
- (FCSParam) initialize(name, description, value, limit)
Create a new parameter with specified information
49 50 51 52 53 54 55 56 |
# File 'lib/fcsparse/fcsevent.rb', line 49 def initialize(name, description, value, limit) @name = name @description = description @value = value @limit = limit end |
Instance Attribute Details
- (Object) description
Returns the value of attribute description
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def description @description end |
- (Object) limit
Returns the value of attribute limit
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def limit @limit end |
- (Object) name
Returns the value of attribute name
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def name @name end |
- (Object) value
Returns the value of attribute value
58 59 60 |
# File 'lib/fcsparse/fcsevent.rb', line 58 def value @value end |