commandlineelement.java

来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 40 行

JAVA
40
字号
/*
 * $Id: CommandLineElement.java,v 1.1 2003/11/25 11:52:57 epr Exp $
 */

package org.jnode.shell.help;

/**
 * @author qades
 */
abstract class CommandLineElement {
	private final String name;
	private final String description;

	public CommandLineElement(String name, String description) {
		this.name = name;
		this.description = description;
	}

	public String getName() {
		return name;
	}

	public String getDescription() {
		return description;
	}

	public abstract String format();
	public abstract void describe(Help help);
	public abstract String complete(String partial);

	/** 
	 * Indicates if the element is satisfied.
	 * I.e. not taking any more values.
	 * @return <code>false</code> if the element takes more argument values;
	 * <code>false</code> otherwise
	 */
	public abstract boolean isSatisfied();

}

⌨️ 快捷键说明

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