⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ifalgorithm.java,v

📁 完整的模式识别库
💻 JAVA,V
字号:
head	1.3;access;symbols;locks; strict;comment	@# @;1.3date	2005.05.24.13.48.50;	author rirwin;	state Exp;branches;next	1.2;1.2date	2005.03.11.05.06.26;	author patil;	state Exp;branches;next	1.1;1.1date	2004.12.28.00.04.32;	author patil;	state Exp;branches;next	;desc@@1.3log@Added Javadoc comments.@text@/* * @@(#) IFAlgorithm.java  6.0 03/10/05 * * Copyright IES,  All Rights Reserved. *  * This software is the proprietary information of IES   * Use of this software for educational and academic purpose  * is permitted. *  * last edited: Ryan Irwin * *//** * This interface is designed to be the base for all algorithms * @@version 6.00 */public interface IFAlgorithm {    /**     * Sets DataPoints given DataPoints type variable. Will be overwritten.     *     * @@param data_a DataPoints to be set     */    boolean setDataPoints(DataPoints data_a);    /**     * Initializes member data and prepares for execution of first step.     * This method "resets" the algorithm. Will be overwritten.     *     * @@return  true     */    boolean initialize();    /**     * Directs algorithm to next step. Will be overwritten.     *     * @@return true     */    boolean nextStep();    /**     * Directs algorithm to previous step. Will be overwritten.     *     * @@return true     */    boolean prevStep();    /**     * Sets the output panel. Will be overwritten.     *     * @@param out_panel_a OutputPanel to be set     * @@return true     */    boolean setOutputPanel( OutputPanel out_panel_a);    /**     * Sets the ProcessBox. Will be overwritten.     *     * @@param pro_box_a ProcessBox to be set     * @@return true     */    boolean setProcessBox( ProcessBox pro_box_a);}@1.2log@comments changed to Java Documentation Style. though there weren't many1@text@d10 2d20 5d27 6d34 6d41 6d48 7d56 7@1.1log@Initial revision@text@d2 1a2 1 * @@(#) IFAlgorithm.java  1.10 02/09/03d4 1a4 1 * Copyright ***,  All Rights Reserved.d6 3a8 2 * This software is the proprietary information of ********   * Use is subject to license terms.d14 1a14 1 * @@version 1.00@

⌨️ 快捷键说明

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