/******************************************************************************* * Copyright (c) 2007, 2010 Association for Decentralized Information Management * in Industry THTH ry. * 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: * VTT Technical Research Centre of Finland - initial API and implementation *******************************************************************************/ package org.simantics.scenegraph.example; import java.awt.Component; import org.eclipse.swt.widgets.Composite; public class SGComponent extends SWTAWTComponent { SGCanvas component = null; public SGComponent(Composite parent, int style) { super(parent, style); } public SGCanvas getCanvas() { return component; } @Override protected Component createSwingComponent() { component = new SGCanvas(); return component; } public void initListeners() { component.initListeners(); } }