|
Telescience Resource Kit
TReK Python
5.4.0 ART
|
This class is the abstraction for all parameter dependencies. More...
Inherits NamedItem.
Inherited by AndDependency, ComparisonDependency, CounterDependency, and OrDependency.
Public Member Functions | |
def | Dependency ( -> None ) -> def |
Class initializer. More... | |
def | get_type ( -> DependencyType ) -> def |
Gets the type of Dependency. More... | |
![]() | |
def | remove_all_attributes ( -> None ) -> def |
Removes all attributes. | |
def | remove_attribute (name: str -> None ) -> def |
Removes the attribute by name. More... | |
def | __eq__ (named_item: object -> bool ) -> def |
Equality operator "==". More... | |
def | copy (copy_from: object -> None ) -> def |
Copies the contents of the provided 'copy_from' NamedItem into this NamedItem. More... | |
def | initialize ( -> None ) -> def |
Initializes the object. More... | |
def | add_attribute (name: str, value: str -> None ) -> def |
Adds an attribute to the item. More... | |
def | get_alias ( -> str ) -> def |
Returns the alias of the item. More... | |
def | get_attribute (name: str -> str ) -> def |
Get the value of the specified attribute. More... | |
def | get_attribute_list ( -> list[str] ) -> def |
Gets a list of the attribute names. More... | |
def | get_name ( -> str ) -> def |
Returns the name of the item. More... | |
def | get_long_description ( -> str ) -> def |
Returns the long description of the item. More... | |
def | get_short_description ( -> str ) -> def |
Returns the short description of the item. More... | |
def | get_user_description ( -> str ) -> def |
Returns the user description of the item. More... | |
def | get_owner ( -> str ) -> def |
Returns the owner of the item. More... | |
def | get_path ( -> str ) -> def |
Returns the path for the item. More... | |
def | set_name (name: str -> None ) -> def |
Sets the name of the item. More... | |
def | set_alias (alias: str -> None ) -> def |
Sets the alias of the item. More... | |
def | set_short_description (description: str -> None ) -> def |
Sets the short description of the item. More... | |
def | set_long_description (description: str -> None ) -> def |
Sets the long description of the item. More... | |
def | set_user_description (description: str -> None ) -> def |
Sets the user description of the item. More... | |
def | set_owner (owner: str -> None ) -> def |
Sets the owner of the item. More... | |
def | set_path (path: str -> None ) -> def |
Sets the path of the item. More... | |
This class is the abstraction for all parameter dependencies.
Dependencies use the value(s) of other parameter(s) to determine if a parameter is available for Extract or Build.
( | ) | -> None |
Class initializer.
Reimplemented from NamedItem.
Reimplemented in AndDependency, ComparisonDependency, CounterDependency, and OrDependency.
( | ) | -> DependencyType |
Gets the type of Dependency.