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.internal.ui.wizards.plugin;
11:
12: import org.eclipse.pde.ui.IFragmentFieldData;
13:
14: public class FragmentFieldData extends AbstractFieldData implements
15: IFragmentFieldData {
16:
17: private String fPluginId;
18: private String fPluginVersion;
19: private int fMatch;
20:
21: /* (non-Javadoc)
22: * @see org.eclipse.pde.ui.IFragmentFieldData#getPluginId()
23: */
24: public String getPluginId() {
25: return fPluginId;
26: }
27:
28: /* (non-Javadoc)
29: * @see org.eclipse.pde.ui.IFragmentFieldData#getPluginVersion()
30: */
31: public String getPluginVersion() {
32: return fPluginVersion;
33: }
34:
35: /* (non-Javadoc)
36: * @see org.eclipse.pde.ui.IFragmentFieldData#getMatch()
37: */
38: public int getMatch() {
39: return fMatch;
40: }
41:
42: public void setPluginId(String id) {
43: fPluginId = id;
44: }
45:
46: public void setPluginVersion(String version) {
47: fPluginVersion = version;
48: }
49:
50: public void setMatch(int match) {
51: fMatch = match;
52: }
53: }
|