
org.eclipse.draw2d.Panel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of draw2d-swt Show documentation
Show all versions of draw2d-swt Show documentation
NetXMS fork of Draw2D for SWT
The newest version!
/*******************************************************************************
* Copyright (c) 2000, 2010 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.draw2d;
/**
* A General purpose Container. This figure is opaque by default, and will fill
* its entire bounds with either the background color that is set on the figure,
* or the IGraphics current background color if none has been set. Opaque
* figures help to optimize painting.
*
* Note that the paintFigure() method in the superclass Figure actually fills
* the bounds of this figure.
*/
public class Panel extends Figure {
/**
* Returns true
as this is an opaque figure.
*
* @return the opaque state of this figure
* @since 2.0
*/
public boolean isOpaque() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy