dotgraphpref.java

来自「c4.5 ID3 分类决策数 公用java包 share」· Java 代码 · 共 37 行

JAVA
37
字号
package shared;
import java.lang.*;

/** Preferences for DotGraph displays.
 *
 * @author James Louis	1/19/2001	Ported to Java.
 * @author Dave Manley	9/23/93	Initial revision
 */
public class DotGraphPref extends DisplayPref{
    
    
    /** This class has no access to a copy constructor.
     * @param source The object to be copied.
     */
    private DotGraphPref(DotGraphPref source){
        super(DotGraphDisplay);
    }
    
    /** This class has no access to an assign method.
     * @param source The object to be copied.
     */
    private void assign(DotGraphPref source){}
    
    /** Constructor.
     */
    public DotGraphPref() {
        super(DotGraphDisplay);
    }
    
    /** Casts this object to a DotGraphPref.
     * @return Returns a reference to this object.
     */
    public DotGraphPref typecast_to_DotGraph() {
        return this;
    }
    
}

⌨️ 快捷键说明

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