MCPcopy
hub / github.com/lxn/walk / property

Struct property

property.go:31–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31type property struct {
32 get func() interface{}
33 set func(v interface{}) error
34 changed *Event
35 source interface{}
36 sourceChangedHandle int
37 validator Validator
38}
39
40func NewProperty(get func() interface{}, set func(v interface{}) error, changed *Event) Property {
41 return &property{get: get, set: set, changed: changed}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected