Skip to content

Instantly share code, notes, and snippets.

@codenameone
Created February 25, 2015 12:30
Show Gist options
  • Save codenameone/4f25e12096ad1c2953cc to your computer and use it in GitHub Desktop.
Save codenameone/4f25e12096ad1c2953cc to your computer and use it in GitHub Desktop.
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