KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > ui > wizards > provisioner > update > UpdateSiteProvisionerEntry


1 /*******************************************************************************
2  * Copyright (c) 2007 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.provisioner.update;
12
13 public class UpdateSiteProvisionerEntry implements IUpdateSiteProvisionerEntry {
14
15     private String JavaDoc installLocation;
16     private String JavaDoc siteLocation;
17
18     public UpdateSiteProvisionerEntry(String JavaDoc installLocation, String JavaDoc siteLocation) {
19         this.installLocation = installLocation;
20         this.siteLocation = siteLocation;
21     }
22
23     public String JavaDoc getInstallLocation() {
24         return installLocation;
25     }
26
27     public String JavaDoc getSiteLocation() {
28         return siteLocation;
29     }
30
31 }
32
Popular Tags