Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.resource.management/src/org/eclipse/osee/framework/resource/management/internal/CompressedResourceBridge.java')
-rw-r--r--plugins/org.eclipse.osee.framework.resource.management/src/org/eclipse/osee/framework/resource/management/internal/CompressedResourceBridge.java108
1 files changed, 54 insertions, 54 deletions
diff --git a/plugins/org.eclipse.osee.framework.resource.management/src/org/eclipse/osee/framework/resource/management/internal/CompressedResourceBridge.java b/plugins/org.eclipse.osee.framework.resource.management/src/org/eclipse/osee/framework/resource/management/internal/CompressedResourceBridge.java
index 6a075200c7f..8b8bed173fd 100644
--- a/plugins/org.eclipse.osee.framework.resource.management/src/org/eclipse/osee/framework/resource/management/internal/CompressedResourceBridge.java
+++ b/plugins/org.eclipse.osee.framework.resource.management/src/org/eclipse/osee/framework/resource/management/internal/CompressedResourceBridge.java
@@ -1,54 +1,54 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.resource.management.internal;
-
-import java.io.ByteArrayInputStream;
-import java.io.InputStream;
-import java.net.URI;
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-import org.eclipse.osee.framework.resource.management.IResource;
-
-/**
- * @author Roberto E. Escobar
- */
-public class CompressedResourceBridge implements IResource {
- private final byte[] backing;
- private final boolean isCompressed;
- private final URI uri;
-
- public CompressedResourceBridge(byte[] backing, URI uri, boolean isCompressed) {
- this.backing = backing;
- this.isCompressed = isCompressed;
- this.uri = uri;
- }
-
- @Override
- public InputStream getContent() throws OseeCoreException {
- return new ByteArrayInputStream(backing);
- }
-
- @Override
- public URI getLocation() {
- return uri;
- }
-
- @Override
- public String getName() {
- String value = uri.toASCIIString();
- return value.substring(value.lastIndexOf("/") + 1, value.length());
- }
-
- @Override
- public boolean isCompressed() {
- return isCompressed;
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.resource.management.internal;
+
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.net.URI;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.eclipse.osee.framework.resource.management.IResource;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class CompressedResourceBridge implements IResource {
+ private final byte[] backing;
+ private final boolean isCompressed;
+ private final URI uri;
+
+ public CompressedResourceBridge(byte[] backing, URI uri, boolean isCompressed) {
+ this.backing = backing;
+ this.isCompressed = isCompressed;
+ this.uri = uri;
+ }
+
+ @Override
+ public InputStream getContent() throws OseeCoreException {
+ return new ByteArrayInputStream(backing);
+ }
+
+ @Override
+ public URI getLocation() {
+ return uri;
+ }
+
+ @Override
+ public String getName() {
+ String value = uri.toASCIIString();
+ return value.substring(value.lastIndexOf("/") + 1, value.length());
+ }
+
+ @Override
+ public boolean isCompressed() {
+ return isCompressed;
+ }
+
+}

Back to the top