01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 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 fragment
15: * project.
16: *
17: * @since 3.0
18: */
19: public interface IFragmentFieldData extends IFieldData {
20: /**
21: * Referenced plug-in id field
22: *
23: * @return the id of the fragment's plug-in
24: */
25: String getPluginId();
26:
27: /**
28: * Referenced plug-in version field
29: *
30: * @return the version of the fragment's plug-in
31: */
32: String getPluginVersion();
33:
34: /**
35: * Referenced plug-in version match choice
36: *
37: * @return the rule for matching the version of the referenced plug-in that
38: * can be one of the values defined in <code>IMatchRules</code>
39: *
40: */
41: int getMatch();
42: }
|