Guest User

Untitled

a guest
Aug 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Java Swing BoxView
  2. public class ListView extends BoxView {
  3.  
  4. public static final int LISTVIEW_INSET_SIZE = 18;
  5.  
  6. public ListView(Element elem) {
  7. super(elem, View.Y_AXIS);
  8. setInsets((short)(LISTVIEW_INSET_SIZE / 2),
  9. (short) LISTVIEW_INSET_SIZE, (short) 0,
  10. (short)(LISTVIEW_INSET_SIZE / 2));
  11. }
  12.  
  13. public void paint(Graphics g, Shape alloc) {
  14. super.paint(g, alloc);
  15. }
  16.  
  17. }
Add Comment
Please, Sign In to add comment