rconsolefactory.java

来自「knime 是一个非常优秀的数据挖掘平台」· Java 代码 · 共 82 行

JAVA
82
字号
/* * ------------------------------------------------------------------- * Copyright, 2003 - 2006 * University of Konstanz, Germany. * Chair for Bioinformatics and Information Mining * Prof. Dr. Michael R. Berthold * * This file is part of the R integration plugin for KNIME. * * The R integration plugin is free software; you can redistribute  * it and/or modify it under the terms of the GNU General Public License  * as published by the Free Software Foundation; either version 2 of the  * License, or (at your option) any later version. *  * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. *  * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St., Fifth Floor, Boston, MA 02110-1301, USA. * Or contact us: contact@knime.org. * ------------------------------------------------------------------- *  */package org.knime.ext.r.node;import org.knime.core.node.NodeDialogPane;import org.knime.core.node.NodeFactory;import org.knime.core.node.NodeModel;import org.knime.core.node.NodeView;/** * <code>NodeFactory</code> for R Console. *  * @author Thomas Gabriel, University of Konstanz */public class RConsoleFactory extends NodeFactory {    /**     * @see org.knime.core.node.NodeFactory#createNodeModel()     */    @Override    public NodeModel createNodeModel() {        return new RConsoleModel();    }    /**     * @see org.knime.core.node.NodeFactory#getNrNodeViews()     */    @Override    public int getNrNodeViews() {        return 0;    }    /**     * @see org.knime.core.node.NodeFactory#createNodeView(int,     *      org.knime.core.node.NodeModel)     */    @Override    public NodeView createNodeView(final int viewIndex,            final NodeModel nodeModel) {        return null;    }    /**     * @see org.knime.core.node.NodeFactory#hasDialog()     */    @Override    public boolean hasDialog() {        return true;    }    /**     * @see org.knime.core.node.NodeFactory#createNodeDialogPane()     */    @Override    public NodeDialogPane createNodeDialogPane() {        return new RConsoleDialogPane();    }}

⌨️ 快捷键说明

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