blob: 619179e54cb5ea53788dc5070b345880ba64875e [file] [log] [blame]
/*******************************************************************************
* 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.GC;
public class LineTab extends GraphicsTab {
public LineTab(GraphicsExample example) {
super(example);
}
public String getText() {
return GraphicsExample.getResourceString("Line"); //$NON-NLS-1$
}
public void paint(GC gc, int width, int height) {
gc.drawLine(0, 0, width, height);
gc.drawLine(width, 0, 0, height);
}
}