You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
299 B
Java

package digisoft.custom.swing.gradient;
/**
* @author Zom-B
* @since 1.0
* @date 2009/04/19
*/
public interface Gradient {
public boolean hasTransparency();
public int getLength();
public int get(int index);
public int get(double position);
public int getOverflow();
}