IBuilderLayout is the interface for all layout builders
| 29 | |
| 30 | // IBuilderLayout is the interface for all layout builders |
| 31 | type IBuilderLayout interface { |
| 32 | BuildLayout(b *Builder, am map[string]interface{}) (ILayout, error) |
| 33 | BuildParams(b *Builder, am map[string]interface{}) (interface{}, error) |
| 34 | } |
| 35 | |
| 36 | // BuilderFunc is type for functions which build a gui object from an attribute map |
| 37 | type BuilderFunc func(*Builder, map[string]interface{}) (IPanel, error) |
no outgoing calls
no test coverage detected