summaryrefslogtreecommitdiffstats
path: root/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/GraphicsTab.java
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/GraphicsTab.java')
-rw-r--r--examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/GraphicsTab.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/GraphicsTab.java b/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/GraphicsTab.java
deleted file mode 100644
index 45e326f6d7..0000000000
--- a/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/GraphicsTab.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2005 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.swt.examples.graphics;
-
-import org.eclipse.swt.graphics.*;
-import org.eclipse.swt.widgets.*;
-
-public abstract class GraphicsTab {
-
-GraphicsExample example;
-
-public GraphicsTab(GraphicsExample example) {
- this.example = example;
-}
-
-/**
- * Creates the widgets used to control the drawing.
- */
-public void createControlPanel(Composite parent) {
-}
-
-/**
- * Disposes resources created by the receiver.
- */
-public void dispose() {
-}
-
-/**
- * Answer the receiver's name.
- */
-public abstract String getText();
-
-/**
- * Answer the receiver's category.
- */
-public String getCategory() {
- return GraphicsExample.getResourceString("Misc"); //$NON-NLS-1$
-}
-
-/**
- * Answer whether the receiver is animated or not.
- */
-public boolean isAnimated() {
- return false;
-}
-
-/**
- * Advance the animation.
- */
-public void next(int width, int height) {
-}
-
-/**
- * Paint the receiver into the specified GC.
- */
-public void paint(GC gc, int width, int height) {
-}
-
-}