?? incrinducer.java
字號:
package shared;
import java.lang.*;
import java.util.*;
/** Abstract template for incremental inducers.
* @author James Louis java Implementation
*/
abstract public class IncrInducer extends Inducer { // ABC
/** This class has no access to a copy constructor.
* @param source */
private IncrInducer(IncrInducer source){super("");}
/** This class has no access to an assign method.
* @param source */
private void assign(IncrInducer source){}
/** Constructor.
* @param description Description of this incremental inducer.
*/
public IncrInducer(String description){super(description);}
/** Add an instance of data to this inducer.
* @param instance The instance to be added.
* @return The iterator of instances after the addition of the instance.
*/
abstract public ListIterator add_instance(Instance instance);
/** Deletes the instance of data in the current position of the list iterator.
* @param pix The iterator of the list of instances.
* @return The instance deleted.
*/
abstract public Instance del_instance(ListIterator pix);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -