/* * @(#)BackgroundBorder.java * * Copyright (c) 2005-2010 Werner Randelshofer, Immensee, Switzerland. * All rights reserved. * * You may not use, copy or modify this file, except in compliance with the * license agreement you entered into with Werner Randelshofer. * For details see accompanying license terms. */ package ch.randelshofer.quaqua.border; import javax.swing.border.*; /** * BackgroundBorder is used by the Quaqua Look And Feel to tag a * border which partially needs to be drawn on to the background of a JComponent. * * @author Werner Randelshofer * @version $Id: BackgroundBorder.java 361 2010-11-21 11:19:20Z wrandelshofer $ */ public interface BackgroundBorder extends Border { /** * Returns the border that needs to be drawn onto the background. */ public Border getBackgroundBorder(); }