Class: Quark::MdkRuntime::Files::SubscribeChanges
- Inherits:
-
DatawireQuarkCore::QuarkObject
- Object
- DatawireQuarkCore::QuarkObject
- Quark::MdkRuntime::Files::SubscribeChanges
- Extended by:
- DatawireQuarkCore::Static
- Defined in:
- lib/mdk_runtime/files.rb
Constant Summary
Constants included from DatawireQuarkCore::Static
DatawireQuarkCore::Static::Unassigned
Instance Attribute Summary collapse
-
#path ⇒ Object
Returns the value of attribute path.
Instance Method Summary collapse
- #__init_fields__ ⇒ Object
- #_getClass ⇒ Object
- #_getField(name) ⇒ Object
- #_setField(name, value) ⇒ Object
-
#initialize(path) ⇒ SubscribeChanges
constructor
A new instance of SubscribeChanges.
Methods included from DatawireQuarkCore::Static
_lazy_statics, static, unlazy_statics
Methods inherited from DatawireQuarkCore::QuarkObject
Constructor Details
#initialize(path) ⇒ SubscribeChanges
Returns a new instance of SubscribeChanges.
28 29 30 31 32 33 34 |
# File 'lib/mdk_runtime/files.rb', line 28 def initialize(path) self.__init_fields__ (self).path = path nil end |
Instance Attribute Details
#path ⇒ Object
Returns the value of attribute path.
21 22 23 |
# File 'lib/mdk_runtime/files.rb', line 21 def path @path end |
Instance Method Details
#__init_fields__ ⇒ Object
65 66 67 68 69 70 |
# File 'lib/mdk_runtime/files.rb', line 65 def __init_fields__() self.path = nil nil end |
#_getClass ⇒ Object
39 40 41 42 43 44 |
# File 'lib/mdk_runtime/files.rb', line 39 def _getClass() return "mdk_runtime.files.SubscribeChanges" nil end |
#_getField(name) ⇒ Object
46 47 48 49 50 51 52 53 54 |
# File 'lib/mdk_runtime/files.rb', line 46 def _getField(name) if ((name) == ("path")) return (self).path end return nil nil end |
#_setField(name, value) ⇒ Object
56 57 58 59 60 61 62 63 |
# File 'lib/mdk_runtime/files.rb', line 56 def _setField(name, value) if ((name) == ("path")) (self).path = ::DatawireQuarkCore.cast(value) { ::String } end nil end |