summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/filesystem/YoctoLocation.java
blob: 40d934594afcf2c092e4dcbd940697a8e5288beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * Copyright (c) 2013 Intel Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Ioana Grigoropol(Intel) - initial API and implementation
 *******************************************************************************/
package org.yocto.bc.ui.filesystem;

import java.net.URI;
import java.net.URISyntaxException;

public class YoctoLocation{
	URI oefsURI;
	URI originalURI;

	public YoctoLocation(){
		try {
			oefsURI = new URI("");
			originalURI = new URI("");
		} catch (URISyntaxException e) {
			e.printStackTrace();
		}
	}

	public URI getOEFSURI() {
		return oefsURI;
	}

	public URI getOriginalURI() {
		return originalURI;
	}

	public void setOriginalURI(URI originalURI) {
		this.originalURI = originalURI;
	}

	public void setOEFSURI(URI uri) {
		this.oefsURI = uri;
	}
}