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.
1489
1490
1491
1492
1493
|
# File 'lib/mdk_runtime.rb', line 1489
def initialize()
self.__init_fields__
nil
end
|
Instance Method Details
#__init_fields__ ⇒ Object
1526
1527
1528
1529
1530
|
# File 'lib/mdk_runtime.rb', line 1526
def __init_fields__()
nil
end
|
#_getClass ⇒ Object
1505
1506
1507
1508
1509
1510
|
# File 'lib/mdk_runtime.rb', line 1505
def _getClass()
return "mdk_runtime.RealEnvVars"
nil
end
|
#_getField(name) ⇒ Object
1512
1513
1514
1515
1516
1517
|
# File 'lib/mdk_runtime.rb', line 1512
def _getField(name)
return nil
nil
end
|
#_setField(name, value) ⇒ Object
1519
1520
1521
1522
1523
1524
|
# File 'lib/mdk_runtime.rb', line 1519
def _setField(name, value)
nil
nil
end
|
#var(name) ⇒ Object
1498
1499
1500
1501
1502
1503
|
# File 'lib/mdk_runtime.rb', line 1498
def var(name)
return ::Quark.mdk_runtime.EnvironmentVariable.new(name, ::Quark.quark.os.Environment.getEnvironment().__get__(name))
nil
end
|