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

22 lines
468 B

package de.memtext.icons;
import java.awt.Graphics;
/**
* @author MB
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public class DoubleArrowUpIcon extends BasicIcon {
@Override
public void myPaint(Graphics g) {
drawArrowUp(g, 0);
drawArrowUp(g, 4);
}
}