Class: Quark::MdkRuntime::RealEnvVars
Overview
Use real environment variables.
Constant Summary
DatawireQuarkCore::Static::Unassigned
Instance Method Summary
collapse
_lazy_statics, static, unlazy_statics
#to_s
Constructor Details
Returns a new instance of RealEnvVars.
1487
1488
1489
1490
1491
|
# File 'lib/mdk_runtime.rb', line 1487
def initialize()
self.__init_fields__
nil
end
|
Instance Method Details
#__init_fields__ ⇒ Object
1524
1525
1526
1527
1528
|
# File 'lib/mdk_runtime.rb', line 1524
def __init_fields__()
nil
end
|
#_getClass ⇒ Object
1503
1504
1505
1506
1507
1508
|
# File 'lib/mdk_runtime.rb', line 1503
def _getClass()
return "mdk_runtime.RealEnvVars"
nil
end
|
#_getField(name) ⇒ Object
1510
1511
1512
1513
1514
1515
|
# File 'lib/mdk_runtime.rb', line 1510
def _getField(name)
return nil
nil
end
|
#_setField(name, value) ⇒ Object
1517
1518
1519
1520
1521
1522
|
# File 'lib/mdk_runtime.rb', line 1517
def _setField(name, value)
nil
nil
end
|
#var(name) ⇒ Object
1496
1497
1498
1499
1500
1501
|
# File 'lib/mdk_runtime.rb', line 1496
def var(name)
return ::Quark.mdk_runtime.EnvironmentVariable.new(name, ::Quark.quark.os.Environment.getEnvironment().__get__(name))
nil
end
|