class FormParameter
Public Class Methods
new(key=nil, value=nil)
click to toggle source
# File lib/foundation/FormParameter.rb, line 4 def initialize(key=nil, value=nil) @key=key @value=value end
Public Instance Methods
getKey()
click to toggle source
# File lib/foundation/FormParameter.rb, line 9 def getKey @key end
getValue()
click to toggle source
# File lib/foundation/FormParameter.rb, line 13 def getValue @value end
setKey(key)
click to toggle source
# File lib/foundation/FormParameter.rb, line 17 def setKey(key) @key=key end
setValue(value)
click to toggle source
# File lib/foundation/FormParameter.rb, line 21 def setValue(value) @value=value end