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); } }