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

x33g5p2x  于2022-01-15 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(81)

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

AbstractNode.fireCookieChange介绍

暂无

代码示例

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

public void stateChanged(ChangeEvent ev) {
    AbstractNode.this.fireCookieChange();
  }
}

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

/** Set the cookie set.
* A listener is attached to the provided cookie set,
* and any change of the sheet is propagated to the node by
* firing {@link #PROP_COOKIE} change events.
*
* @param s the cookie set to use
* @deprecated just use getCookieSet().add(...) instead
* @exception IllegalStateException If you pass a Lookup instance into the constructor, this
*   method cannot be called.
*/
@Deprecated
protected final synchronized void setCookieSet(CookieSet s) {
  if (internalLookup(false) != null) {
    throw new IllegalStateException("CookieSet cannot be used when lookup is associated with the node"); // NOI18N
  }
  if (sheetCookieL == null) {
    sheetCookieL = new SheetAndCookieListener();
  }
  CookieSet cookieSet = (CookieSet) lookup;
  if (cookieSet != null) {
    cookieSet.removeChangeListener(sheetCookieL);
  }
  s.addChangeListener(sheetCookieL);
  lookup = s;
  fireCookieChange();
}

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

public void stateChanged (ChangeEvent ev) {
    AbstractNode.this.fireCookieChange ();
  }
}

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

public void stateChanged (ChangeEvent ev) {
    AbstractNode.this.fireCookieChange ();
  }
}

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

/** Set the cookie set.
* A listener is attached to the provided cookie set,
* and any change of the sheet is propagated to the node by
* firing {@link #PROP_COOKIE} change events.
*
* @param s the cookie set to use
* @deprecated just use getCookieSet().add(...) instead
* @exception IllegalStateException If you pass a Lookup instance into the constructor, this 
*   method cannot be called.
*/
protected final synchronized void setCookieSet (CookieSet s) {
  if (internalLookup (false) != null) {
    throw new IllegalStateException ("CookieSet cannot be used when lookup is associated with the node"); // NOI18N
  }
  
  if (sheetCookieL == null) {
    sheetCookieL = new SheetAndCookieListener ();
  }
  CookieSet cookieSet = (CookieSet)lookup;
  if (cookieSet != null) {
    cookieSet.removeChangeListener (sheetCookieL);
  }
  s.addChangeListener (sheetCookieL);
  lookup = s;
  fireCookieChange ();
}

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

/** Set the cookie set.
* A listener is attached to the provided cookie set,
* and any change of the sheet is propagated to the node by
* firing {@link #PROP_COOKIE} change events.
*
* @param s the cookie set to use
* @deprecated just use getCookieSet().add(...) instead
* @exception IllegalStateException If you pass a Lookup instance into the constructor, this 
*   method cannot be called.
*/
protected final synchronized void setCookieSet (CookieSet s) {
  if (internalLookup (false) != null) {
    throw new IllegalStateException ("CookieSet cannot be used when lookup is associated with the node"); // NOI18N
  }
  
  if (sheetCookieL == null) {
    sheetCookieL = new SheetAndCookieListener ();
  }
  CookieSet cookieSet = (CookieSet)lookup;
  if (cookieSet != null) {
    cookieSet.removeChangeListener (sheetCookieL);
  }
  s.addChangeListener (sheetCookieL);
  lookup = s;
  fireCookieChange ();
}

相关文章

微信公众号

最新文章

更多