Class: DataFiles::Autocompletion::ParsedInput
- Inherits:
-
Struct
- Object
- Struct
- DataFiles::Autocompletion::ParsedInput
- Defined in:
- lib/data_files/autocompletion.rb
Instance Attribute Summary collapse
-
#attribute_name ⇒ Object
Returns the value of attribute attribute_name.
-
#attribute_value ⇒ Object
Returns the value of attribute attribute_value.
-
#klass_name ⇒ Object
Returns the value of attribute klass_name.
-
#method_name ⇒ Object
Returns the value of attribute method_name.
Instance Method Summary collapse
Instance Attribute Details
#attribute_name ⇒ Object
Returns the value of attribute attribute_name
9 10 11 |
# File 'lib/data_files/autocompletion.rb', line 9 def attribute_name @attribute_name end |
#attribute_value ⇒ Object
Returns the value of attribute attribute_value
9 10 11 |
# File 'lib/data_files/autocompletion.rb', line 9 def attribute_value @attribute_value end |
#klass_name ⇒ Object
Returns the value of attribute klass_name
9 10 11 |
# File 'lib/data_files/autocompletion.rb', line 9 def klass_name @klass_name end |
#method_name ⇒ Object
Returns the value of attribute method_name
9 10 11 |
# File 'lib/data_files/autocompletion.rb', line 9 def method_name @method_name end |
Instance Method Details
#valid? ⇒ Boolean
10 11 12 |
# File 'lib/data_files/autocompletion.rb', line 10 def valid? klass_name && method_name && attribute_name end |