Attributes represents a list of attributes (e.g. `href="foo"` for links). swagger:model uiNodeAttributes
| 45 | // |
| 46 | // swagger:model uiNodeAttributes |
| 47 | type Attributes interface { |
| 48 | // swagger:ignore |
| 49 | ID() string |
| 50 | |
| 51 | // swagger:ignore |
| 52 | Reset() |
| 53 | |
| 54 | // swagger:ignore |
| 55 | SetValue(value interface{}) |
| 56 | |
| 57 | // swagger:ignore |
| 58 | GetValue() interface{} |
| 59 | |
| 60 | // swagger:ignore |
| 61 | GetNodeType() UiNodeType |
| 62 | |
| 63 | // swagger:ignore |
| 64 | Matches(other Attributes) bool |
| 65 | } |
| 66 | |
| 67 | // InputAttributes represents the attributes of an input node |
| 68 | // |
no outgoing calls
no test coverage detected