01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package org.terracotta.ui.util;
06:
07: import org.eclipse.swt.widgets.Composite;
08:
09: public abstract class AbstractSWTPanel extends Composite implements
10: SWTComponentModel {
11:
12: protected volatile boolean m_isActive;
13:
14: public AbstractSWTPanel(Composite parent, int style) {
15: super(parent, style);
16: }
17: }
|