operatortreemodel.html

来自「数据挖掘方面最新软件」· HTML 代码 · 共 645 行 · 第 1/2 页

HTML
645
字号
<PRE>public boolean <B>showDisabledOperators</B>()</PRE><DL><DD>Indicates if disabled operators should be displayed by the tree.<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="setShowDisabledOperators(boolean)"><!-- --></A><H3>setShowDisabledOperators</H3><PRE>public void <B>setShowDisabledOperators</B>(boolean&nbsp;show)</PRE><DL><DD>Sets the state of showing diabled operators.<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getRoot()"><!-- --></A><H3>getRoot</H3><PRE>public java.lang.Object <B>getRoot</B>()</PRE><DL><DD>Returns the root operator.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>getRoot</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getChild(java.lang.Object, int)"><!-- --></A><H3>getChild</H3><PRE>public java.lang.Object <B>getChild</B>(java.lang.Object&nbsp;parent,                                 int&nbsp;index)</PRE><DL><DD>Returns the child with the given index. This method checks if disabled operators  should be regarded or not.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>getChild</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getChildCount(java.lang.Object)"><!-- --></A><H3>getChildCount</H3><PRE>public int <B>getChildCount</B>(java.lang.Object&nbsp;parent)</PRE><DL><DD>Returns the number of children operators. This method checks if disabled operators  should be regarded or not.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>getChildCount</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getIndexOfChild(java.lang.Object, java.lang.Object)"><!-- --></A><H3>getIndexOfChild</H3><PRE>public int <B>getIndexOfChild</B>(java.lang.Object&nbsp;parent,                           java.lang.Object&nbsp;child)</PRE><DL><DD>Returns the index of the child operator with respect to the given parent. This method  checks if disabled operators should be regarded or not.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>getIndexOfChild</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="isLeaf(java.lang.Object)"><!-- --></A><H3>isLeaf</H3><PRE>public boolean <B>isLeaf</B>(java.lang.Object&nbsp;node)</PRE><DL><DD>Returns true if the operator is a leaf node, i.e. it does not have any children.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>isLeaf</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="valueForPathChanged(javax.swing.tree.TreePath, java.lang.Object)"><!-- --></A><H3>valueForPathChanged</H3><PRE>public void <B>valueForPathChanged</B>(javax.swing.tree.TreePath&nbsp;path,                                java.lang.Object&nbsp;node)</PRE><DL><DD>Will be invoked after editing changes of nodes, i.e. after renaming. This method also   causes a refresh since the bounding box of the changed node would not be updated otherwise.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>valueForPathChanged</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="addTreeModelListener(javax.swing.event.TreeModelListener)"><!-- --></A><H3>addTreeModelListener</H3><PRE>public void <B>addTreeModelListener</B>(javax.swing.event.TreeModelListener&nbsp;l)</PRE><DL><DD>Adds a tree model listener.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>addTreeModelListener</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="removeTreeModelListener(javax.swing.event.TreeModelListener)"><!-- --></A><H3>removeTreeModelListener</H3><PRE>public void <B>removeTreeModelListener</B>(javax.swing.event.TreeModelListener&nbsp;l)</PRE><DL><DD>Removes the tree model listener.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>removeTreeModelListener</CODE> in interface <CODE>javax.swing.tree.TreeModel</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="fireOperatorInserted(java.lang.Object, javax.swing.tree.TreePath, int, com.rapidminer.operator.Operator)"><!-- --></A><H3>fireOperatorInserted</H3><PRE>public void <B>fireOperatorInserted</B>(java.lang.Object&nbsp;source,                                 javax.swing.tree.TreePath&nbsp;path,                                 int&nbsp;index,                                 <A HREF="../../../../com/rapidminer/operator/Operator.html" title="class in com.rapidminer.operator">Operator</A>&nbsp;operator)</PRE><DL><DD>Must be used to indicate that a new operator was added. Notifies the listeners by invoking the method   treeNodesInserted(...).<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="fireOperatorRemoved(java.lang.Object, javax.swing.tree.TreePath, int, com.rapidminer.operator.Operator)"><!-- --></A><H3>fireOperatorRemoved</H3><PRE>public void <B>fireOperatorRemoved</B>(java.lang.Object&nbsp;source,                                javax.swing.tree.TreePath&nbsp;path,                                int&nbsp;index,                                <A HREF="../../../../com/rapidminer/operator/Operator.html" title="class in com.rapidminer.operator">Operator</A>&nbsp;operator)</PRE><DL><DD>Must be used to indicate that an operator was removed. Notifies the listeners by invoking the method   treeNodesRemoved(...).<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="fireOperatorRenamed(java.lang.Object, javax.swing.tree.TreePath)"><!-- --></A><H3>fireOperatorRenamed</H3><PRE>public void <B>fireOperatorRenamed</B>(java.lang.Object&nbsp;source,                                javax.swing.tree.TreePath&nbsp;path)</PRE><DL><DD>Must be used to indicate that an operator was renamed. Notifies the listeners by invoking the method   treeNodesChanged(...).<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="fireOperatorChanged(java.lang.Object, javax.swing.tree.TreePath)"><!-- --></A><H3>fireOperatorChanged</H3><PRE>public void <B>fireOperatorChanged</B>(java.lang.Object&nbsp;source,                                javax.swing.tree.TreePath&nbsp;path)</PRE><DL><DD>Must be used to indicate that an operator was changed in some way. Notifies the listeners by invoking the method   treeNodesChanged(...).<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="fireStructureChanged(java.lang.Object, javax.swing.tree.TreePath)"><!-- --></A><H3>fireStructureChanged</H3><PRE>public void <B>fireStructureChanged</B>(java.lang.Object&nbsp;source,                                 javax.swing.tree.TreePath&nbsp;path)</PRE><DL><DD>Must be used to indicate that the tree structure has changed. Notifies the listeners by invoking the method   treeStructureChanged(...).<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/OperatorTreeModel.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=114160&amp;type=2" width="125" height="37" border="0" alt="SourceForge.net Logo" /></a></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../../../com/rapidminer/gui/operatortree/OperatorTreeCellRenderer.html" title="class in com.rapidminer.gui.operatortree"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../../../com/rapidminer/gui/operatortree/TransferableOperator.html" title="class in com.rapidminer.gui.operatortree"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../../index.html?com/rapidminer/gui/operatortree/OperatorTreeModel.html" target="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="OperatorTreeModel.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;&nbsp;<SCRIPT type="text/javascript">  <!--  if(window==top) {    document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');  }  //--></SCRIPT><NOSCRIPT>  <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR><i>Copyright &#169; 2001-2008 by <a href="http://rapid-i.com" target="_blank">Rapid-I</a></i></BODY></HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?