Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ComponentDesc ¶
type ComponentDesc struct {
ComponentName string
ComponentIndex uint8 // equal to module index
ComponentType interface{} `json:"-"`
Methods []ComponentMethodDesc
}
type ComponentMethodDesc ¶
type ComponentMethodDesc struct {
MethodIndex uint32 // equal to action index
MethodName string // equal to action name
FieldType reflect.Type `json:"-"` // method field type to create field by reflect, but use the filed handler is better
Handler methodHandler `json:"-"` // method handler
FieldHandler fieldHandler `json:"-"` // method field handler, the handler function will be called to create field
}
Click to show internal directories.
Click to hide internal directories.