1. /*
  2. * @(#)GTKRegion.java 1.1 03/10/14
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.java.swing.plaf.gtk;
  8. /**
  9. * A typesafe enumeration of the distinct rendering portions specific
  10. * to GTK.
  11. *
  12. * @version 1.1, 10/14/03
  13. * @author Scott Violet
  14. */
  15. class GTKRegion extends Region {
  16. public static final Region HANDLE_BOX = new Region("HandleBox");
  17. GTKRegion(String key) {
  18. super(key);
  19. }
  20. }