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