blob: d891ee6beda7ecccb2a9d8e4b3ecb1db5d416045 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.draw2d.ui.figures;
import org.eclipse.draw2d.Border;
import org.eclipse.gmf.runtime.draw2d.ui.internal.figures.TransparentBorder;
/**
* @author choang
*
* Interface to define all border that have the ability to draw a shadow
* provides ability for client to toggle whether on not the shadow should be
* drawn
*/
public interface DropShadowBorder extends TransparentBorder, Border {
/**
* Sets whether the border will draw a drop shadow with the border edge.
* @param drawDropShadow
*/
public void setShouldDrawDropShadow(boolean drawDropShadow);
/**
* @return true iff the border painting method will draw a shadow
*/
public boolean shouldDrawDropShadow();
}