/** * Copyright 2005 Alcatel, OSP. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.alcatel.jsce.util.classpath; import org.eclipse.jdt.core.IClasspathEntry; import org.eclipse.jdt.ui.wizards.IClasspathContainerPage; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.wizard.WizardPage; import org.eclipse.swt.widgets.Composite; /** * Description: * <p> * * <p> * * @author Skhiri dit Gabouje Sabri * */ public class ClasspathContainerPage extends WizardPage implements IClasspathContainerPage { /** * @param pageName */ public ClasspathContainerPage(String pageName) { super(pageName); // TODO Auto-generated constructor stub } /** * @param pageName * @param title * @param titleImage */ public ClasspathContainerPage(String pageName, String title, ImageDescriptor titleImage) { super(pageName, title, titleImage); // TODO Auto-generated constructor stub } /** * @see org.eclipse.jdt.ui.wizards.IClasspathContainerPage#finish() */ public boolean finish() { // TODO Auto-generated method stub return false; } /** * @see org.eclipse.jdt.ui.wizards.IClasspathContainerPage#getSelection() */ public IClasspathEntry getSelection() { // TODO Auto-generated method stub return null; } /** * @see org.eclipse.jdt.ui.wizards.IClasspathContainerPage#setSelection(org.eclipse.jdt.core.IClasspathEntry) */ public void setSelection(IClasspathEntry containerEntry) { // TODO Auto-generated method stub } /** * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite) */ public void createControl(Composite parent) { // TODO Auto-generated method stub } }