Here you can find the source of drawSelectionBox(Graphics g)
public static void drawSelectionBox(Graphics g)
//package com.java2s; //License from project: LGPL import java.awt.Color; import java.awt.Graphics; public class Main { public static void drawSelectionBox(Graphics g) { int width = g.getClipBounds().width; int height = g.getClipBounds().height; g.setColor(Color.GREEN);/* w w w . j a v a 2 s . co m*/ g.drawRect(3, 3, width - 6, height - 6); } }