Java tutorial
/******************************************************************************* * Copyright (c) 2000, 2011. 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: * Fizer Khan, Yasmine - initial API and implementation *******************************************************************************/ package edu.panimalar.ocr.ui.preferences; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.ui.IWorkbench; import org.eclipse.ui.IWorkbenchPreferencePage; public class PreferencePage extends org.eclipse.jface.preference.PreferencePage implements IWorkbenchPreferencePage { public PreferencePage() { // TODO Auto-generated constructor stub } public PreferencePage(String title) { super(title); // TODO Auto-generated constructor stub } public PreferencePage(String title, ImageDescriptor image) { super(title, image); // TODO Auto-generated constructor stub } @Override public void init(IWorkbench workbench) { // TODO Auto-generated method stub } @Override protected Control createContents(Composite parent) { // TODO Auto-generated method stub return null; } }