1. /*
  2. * @(#)GTKRegion.java 1.2 03/12/19
  3. *
  4. * Copyright 2004 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. import javax.swing.plaf.synth.Region;
  9. /**
  10. * A typesafe enumeration of the distinct rendering portions specific
  11. * to GTK.
  12. *
  13. * @version 1.2, 12/19/03
  14. * @author Scott Violet
  15. */
  16. class GTKRegion extends Region {
  17. public static final Region HANDLE_BOX = new GTKRegion("HandleBox", null,
  18. true);
  19. protected GTKRegion(String name, String ui, boolean subregion) {
  20. super(name, ui, subregion);
  21. }
  22. }