org.openide.nodes.Children.callAddNotify()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(131)

本文整理了Java中org.openide.nodes.Children.callAddNotify()方法的一些代码示例,展示了Children.callAddNotify()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Children.callAddNotify()方法的具体详情如下:
包路径:org.openide.nodes.Children
类名称:Children
方法名:callAddNotify

Children.callAddNotify介绍

[英]Method that can be overriden in subclasses to do additional work and then call addNotify.
[中]方法,该方法可以在子类中重写以执行其他工作,然后调用addNotify。

代码示例

代码示例来源:origin: org.netbeans.api/org-openide-nodes

/** Called on first use.
*/
@Override
final void callAddNotify() {
  entrySupport().setEntries(createEntries(getMap()), true);
  super.callAddNotify();
}

代码示例来源:origin: org.netbeans.api/org-openide-nodes

children.callAddNotify();
if (LOG_ENABLED) {
  LOGGER.finer("addNotify successfully called for " + this + " on " + Thread.currentThread()); // NOI18N

代码示例来源:origin: org.netbeans.api/org-openide-nodes

children.callAddNotify();
} finally {
  synchronized (LOCK) {

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/openide

/** Called on first use.
*/
final void callAddNotify () {
  this.setEntries (createEntries (getMap ()));
  super.callAddNotify ();
}

代码示例来源:origin: net.sf.squirrel-sql.thirdpary-non-maven/openide

/** Called on first use.
*/
final void callAddNotify () {
  this.setEntries (createEntries (getMap ()));
  super.callAddNotify ();
}

代码示例来源:origin: net.sf.squirrel-sql.thirdpary-non-maven/openide

this.callAddNotify ();
if (IS_LOG_GET_ARRAY) {
  LOG_GET_ARRAY.log ("addNotify successfully called for " + this + " on " + Thread.currentThread ()); // NOI18N

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/openide

this.callAddNotify ();
if (IS_LOG_GET_ARRAY) {
  LOG_GET_ARRAY.log ("addNotify successfully called for " + this + " on " + Thread.currentThread ()); // NOI18N

相关文章