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