stringequalitydescriptor.java

来自「PIY(Program It Yourself)是一个基于Java的应用程序开发」· Java 代码 · 共 44 行

JAVA
44
字号
package piy.comparator;

import java.io.File;
import java.awt.Image;
import javax.swing.ImageIcon;
import piy.ActionDescriptor;

/**
* Describes the StringEqualityComparator comparator
* @author David Vivash
* @version 1.0, 2/05/01
*/
public class StringEqualityDescriptor extends ActionDescriptor
{
	public Class getDescribedClass() { return StringEqualityComparator.class; }

	public String getName() { return "Equality"; }

	public String getDescription() { return "Checks to see if two strings (pieces of text) are the same"; }

	public String getCategory() {
		return "Text";
	}
	
	/**
	* Returns the (40x40) icon that should be displayed in the boolean expression window.
	* @return the (large) image of the if action
	*/
	public ImageIcon getBigIcon() {
		String sep = File.separator;
		return new ImageIcon("piy" + sep + "comparator" + sep + "equality.gif");
	}
	
	/*
	* Returns the (24x24) icon that should be displayed on the PIY toolbar.
	* @return the image of the if action
	*/
	public Image getIcon() {
		String sep = File.separator;
		return new ImageIcon("piy" + sep + "comparator" + sep + "smallequals.gif").getImage();
	}


}

⌨️ 快捷键说明

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