class documentation
class PanelRefBase(object): (source)
Known subclasses: fiftyone.operators.panel.PanelRefData
, fiftyone.operators.panel.PanelRefState
Constructor: PanelRefBase(ctx)
Base class for panel state and data.
Parameters | |
ctx | an fiftyone.operators.executor.ExecutionContext |
Method | __getattr__ |
Undocumented |
Method | __init__ |
Undocumented |
Method | __setattr__ |
Undocumented |
Method | clear |
Clears the dictionary. |
Method | get |
Gets a value from the dictionary. |
Method | set |
Sets some value(s) in the dictionary. |
Instance Variable | _ctx |
Undocumented |
Instance Variable | _data |
Undocumented |
overridden in
fiftyone.operators.panel.PanelRefData
Gets a value from the dictionary.
Parameters | |
key | a key or "nested.key.path" |
default:None | a default value if the key is not found |
Returns | |
the value |
Sets some value(s) in the dictionary.
Parameters | |
key | a key, "nested.key.path", or dict mapping multiple possibly-nested keys to values |
value:None | the value, if key is a string |