From c7da892cb23d50d4d85746c9a0b6b14bf570989d Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Thu, 26 Jun 2014 13:23:09 +0200 Subject: initial commit for Enea Linux 4.0 Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau --- .../org/yocto/bc/ui/filesystem/YoctoLocation.java | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/filesystem/YoctoLocation.java (limited to 'plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/filesystem/YoctoLocation.java') diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/filesystem/YoctoLocation.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/filesystem/YoctoLocation.java new file mode 100755 index 0000000..40d9345 --- /dev/null +++ b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/filesystem/YoctoLocation.java @@ -0,0 +1,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; + } +} -- cgit v1.2.3-54-g00ecf