All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javajs.api.GenericColor Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.api;

/**
 * GenericColor allows both java.awt.Color and javajs.awt.Color to be
 * handled by methods that need not distinguish between them. It is used
 * in the javajs package for the background color of a javajs.swing.JComponent
 * 
 * @author hansonr
 *
 */
public interface GenericColor {

	int getRGB();

	int getOpacity255();

	void setOpacity255(int a);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy