欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

stringpartdescriptor.java

PIY(Program It Yourself)是一个基于Java的应用程序开发环境
JAVA
字号:
package piy.comparator;

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

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

	public String getName() { return "Text Part"; }

	public String getDescription() { return "Checks to see if two strings (pieces of text) start or end in the same way"; }

	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 + "part.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 + "smallpart.gif").getImage();
	}


	
}

⌨️ 快捷键说明

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