!18584 NodeController绑定解绑生命周期回调接口注释修改

Merge pull request !18584 from wangxiuxiu96/nodecontroller_fix
This commit is contained in:
openharmony_ci 2025-04-07 09:39:32 +00:00 committed by Gitee
commit f241d794dd
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -195,9 +195,9 @@ export abstract class NodeController {
* @since 18
*/
onWillUnbind?(containerId: number): void;
/**
* OnBind Method. Executed when the NodeController is bound to a NodeContainer.
* OnBind Method. Executed after the NodeController is bound to a NodeContainer.
*
* @param { number } containerId - the uniqueId of the NodeContainer.
* @syscap SystemCapability.ArkUI.ArkUI.Full
@ -208,7 +208,7 @@ export abstract class NodeController {
onBind?(containerId: number): void;
/**
* OnUnbind Method. Executed when the NodeController is unbind with the NodeContainer.
* OnUnbind Method. Executed after the NodeController is unbind with the NodeContainer.
*
* @param { number } containerId - the uniqueId of the NodeContainer.
* @syscap SystemCapability.ArkUI.ArkUI.Full