KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*******************************************************************************
2  * Copyright (c) 2005, 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 public class LibraryPluginFieldData extends PluginFieldData {
14     private String JavaDoc[] fLibraryPaths;
15
16     private boolean fUnzipLibraries = false;
17     private boolean fFindDependencies = false;
18
19     public String JavaDoc[] getLibraryPaths() {
20         return fLibraryPaths;
21     }
22
23     public void setLibraryPaths(String JavaDoc[] libraryPaths) {
24         fLibraryPaths = libraryPaths;
25     }
26
27     public boolean isUnzipLibraries() {
28         return fUnzipLibraries;
29     }
30
31     public void setUnzipLibraries(boolean jarred) {
32         fUnzipLibraries = jarred;
33     }
34     
35     public void setFindDependencies(boolean findDependencies) {
36         fFindDependencies = findDependencies;
37     }
38     
39     public boolean doFindDependencies() {
40         return fFindDependencies;
41     }
42
43 }
44
Popular Tags