#CLIENTMENUMANAGER Docu

This commit is contained in:
Applevangelist 2023-07-11 16:10:40 +02:00
parent fb8f804af2
commit 63ba50a83a

View File

@ -15,6 +15,7 @@
-- ### Author: **applevangelist** -- ### Author: **applevangelist**
-- --
-- === -- ===
--
-- @module Core.ClientMenu -- @module Core.ClientMenu
-- @image Core_Menu.JPG -- @image Core_Menu.JPG
-- last change: July 2023 -- last change: July 2023
@ -247,7 +248,8 @@ end
-- --
---------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------
---CLIENTMENUMANAGER class
--- Class CLIENTMENUMANAGER
-- @type CLIENTMENUMANAGER -- @type CLIENTMENUMANAGER
-- @field #string ClassName Class Name -- @field #string ClassName Class Name
-- @field #string lid Lid for log entries -- @field #string lid Lid for log entries
@ -265,7 +267,7 @@ end
-- --
-- === -- ===
-- --
-- # CLIENTMENU and CLIENTMENUMANAGER -- ## CLIENTMENU and CLIENTMENUMANAGER
-- --
-- Manage menu structures for a SET_CLIENT of clients. -- Manage menu structures for a SET_CLIENT of clients.
-- --
@ -338,13 +340,8 @@ end
-- --
-- ## Reset all and clear the reference tree -- ## Reset all and clear the reference tree
-- --
-- menumgr:ResetMenuComplete() -- menumgr:ResetMenuComplete()
--- --
-- @type CLIENTMENUMANAGER.Structure
-- @field #table generic
-- @field #table IDs
---
-- @field #CLIENTMENUMANAGER -- @field #CLIENTMENUMANAGER
CLIENTMENUMANAGER = { CLIENTMENUMANAGER = {
ClassName = "CLIENTMENUMANAGER", ClassName = "CLIENTMENUMANAGER",
@ -369,6 +366,10 @@ CLIENTMENUMANAGER = {
debug = true, debug = true,
} }
---
-- @type CLIENTMENUMANAGER.Structure
-- @field #table generic
-- @field #table IDs
--- Create a new ClientManager instance. --- Create a new ClientManager instance.
-- @param #CLIENTMENUMANAGER self -- @param #CLIENTMENUMANAGER self
@ -889,4 +890,3 @@ end
-- End ClientMenu -- End ClientMenu
-- --
---------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------