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