1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.pde.ui; 12 13 /** 14 * In addition to field data from the 'New Project' wizard pages, this interface 15 * provides choices made by the user that are unique to creating a new plug-in 16 * project. 17 * 18 * @since 3.0 19 */ 20 public interface IPluginFieldData extends IFieldData { 21 /** 22 * The class name field. 23 * 24 * @return the name of the plug-in class 25 */ 26 String getClassname(); 27 /** 28 * UI plug-in selection. 29 * 30 * @return <code>true</code> if the plug-in contains UI code and 31 * extensions, <code>false</code> otherwise. 32 */ 33 boolean isUIPlugin(); 34 /** 35 * Plug-in class generation selection. 36 * 37 * @return <code>true</code> if the plug-in class is to be generated by 38 * the plug-in wizard, <code>false</code> otherwise. 39 */ 40 boolean doGenerateClass(); 41 42 } 43