KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > ui > wizards > plugin > FragmentFieldData


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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.internal.ui.wizards.plugin;
12
13 import org.eclipse.pde.ui.IFragmentFieldData;
14
15 public class FragmentFieldData extends AbstractFieldData implements IFragmentFieldData {
16
17     private String JavaDoc fPluginId;
18     private String JavaDoc fPluginVersion;
19     private int fMatch;
20     
21     /* (non-Javadoc)
22      * @see org.eclipse.pde.ui.IFragmentFieldData#getPluginId()
23      */

24     public String JavaDoc getPluginId() {
25         return fPluginId;
26     }
27     
28     /* (non-Javadoc)
29      * @see org.eclipse.pde.ui.IFragmentFieldData#getPluginVersion()
30      */

31     public String JavaDoc 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 JavaDoc id) {
43         fPluginId = id;
44     }
45     
46     public void setPluginVersion(String JavaDoc version) {
47         fPluginVersion = version;
48     }
49     
50     public void setMatch(int match) {
51         fMatch = match;
52     }
53 }
54
Popular Tags