MCPcopy
hub / github.com/reflex-dev/reflex / get_full_name

Method get_full_name

reflex/state.py:1076–1086  ·  view source on GitHub ↗

Get the full name of the state. Returns: The full name of the state.

(cls)

Source from the content-addressed store, hash-verified

1074 @classmethod
1075 @functools.lru_cache
1076 def get_full_name(cls) -> str:
1077 """Get the full name of the state.
1078
1079 Returns:
1080 The full name of the state.
1081 """
1082 name = cls.get_name()
1083 parent_state = cls.get_parent_state()
1084 if parent_state is not None:
1085 name = parent_state.get_full_name() + "." + name
1086 return name
1087
1088 @classmethod
1089 @functools.lru_cache

Callers 15

get_var_valueMethod · 0.95
get_deltaMethod · 0.95
dictMethod · 0.95
_check_state_sizeMethod · 0.95
_serializeMethod · 0.95
_register_base_stateMethod · 0.80
get_substatesMethod · 0.80
get_event_handler_partsFunction · 0.80
from_stateMethod · 0.80
_var_set_stateMethod · 0.80
__get__Method · 0.80

Calls 2

get_nameMethod · 0.80
get_parent_stateMethod · 0.80