📄 step.java
字号:
/* * File: Step.java * Project: MPI Linguistic Application * Date: 02 May 2007 * * Copyright (C) 2001-2007 Max Planck Institute for Psycholinguistics * * This program 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package mpi.eudico.client.annotator.gui.multistep;/** * Step. Defines methods for a single step in a multiple step process. * * @author Han Sloetjes */public interface Step { /** * Returns the step title, which can be used for a short description. * * @return the tile of the step */ public String getStepTitle(); /** * Notification that this step is activated while stepping forward. * Some initilization could be done here. */ public void enterStepForward(); /** * Notification that this step is activated while stepping backward. */ public void enterStepBackward(); /** * Notification that this step is de-activated while stepping forward. * * @return true if this step's condition for stepping forward have been met, * false otherwise */ public boolean leaveStepForward(); /** * Notification that this step is de-activated while stepping backward. * * @return true if this step's condition for stepping backward have been met, * false otherwise */ public boolean leaveStepBackward(); /** * Notification that the whole process has been cancelled. * Clean up. */ public void cancelled(); /** * Notification that the whole process has been finished. * Clean up. */ public void finished(); /** * Perform the final action(s) that end(s) this process. * * @return true when the action has been finished successfullly */ public boolean doFinish(); /** * Invitation to show help information about this step or the whole process, * if available. */ public void showHelp();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -