Created
February 25, 2015 12:30
-
-
Save codenameone/4f25e12096ad1c2953cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class RectangleComponent extends Component { | |
public void paint(Graphics g){ | |
g.setColor(0x0000ff); | |
g.drawRect(getX()+5, getY()+5, getWidth()-10, getHeight()-10); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment