// Code generated DO NOT EDIT
|
|
// radionodelist.go
|
|
package dom
|
|
|
|
import "syscall/js"
|
|
|
|
type RadioNodeListIFace interface {
|
|
Item(args ...interface{}) Node
|
|
GetLength() float64
|
|
GetValue() string
|
|
SetValue(string)
|
|
}
|
|
type RadioNodeList struct {
|
|
Value
|
|
NodeList
|
|
}
|
|
|
|
func jsValueToRadioNodeList(val js.Value) RadioNodeList {
|
|
return RadioNodeList{Value: Value{Value: val}}
|
|
}
|
|
func (v Value) AsRadioNodeList() RadioNodeList { return RadioNodeList{Value: v} }
|
|
func (r RadioNodeList) GetValue() string {
|
|
val := r.Get("value")
|
|
return val.String()
|
|
}
|
|
func (r RadioNodeList) SetValue(val string) {
|
|
r.Set("value", val)
|
|
}
|