blob: a7f92c2470845c29a47039cf345dcb02318c1bc9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Original authors 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:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.examples;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
public interface INatExample {
public static final String BASE_PACKAGE = "org.eclipse.nebula.widgets.nattable.examples.examples";
public static final String BASE_PATH = "/org/eclipse/nebula/widgets/nattable/examples/examples";
public String getName();
public String getShortDescription();
public String getDescription();
public Control createExampleControl(Composite parent);
public void onStart();
public void onStop();
}