Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.ui.common/src/org/eclipse/etrice/ui/common/concurrency/SimpleDirtyResource.java')
-rw-r--r--plugins/org.eclipse.etrice.ui.common/src/org/eclipse/etrice/ui/common/concurrency/SimpleDirtyResource.java126
1 files changed, 63 insertions, 63 deletions
diff --git a/plugins/org.eclipse.etrice.ui.common/src/org/eclipse/etrice/ui/common/concurrency/SimpleDirtyResource.java b/plugins/org.eclipse.etrice.ui.common/src/org/eclipse/etrice/ui/common/concurrency/SimpleDirtyResource.java
index 93df07bca..6adb99f81 100644
--- a/plugins/org.eclipse.etrice.ui.common/src/org/eclipse/etrice/ui/common/concurrency/SimpleDirtyResource.java
+++ b/plugins/org.eclipse.etrice.ui.common/src/org/eclipse/etrice/ui/common/concurrency/SimpleDirtyResource.java
@@ -1,63 +1,63 @@
-/*******************************************************************************
- * Copyright (c) 2010 protos software gmbh (http://www.protos.de).
- * 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:
- * Jan Koehnlein (Itemis, initially from org.eclipse.xtext.gmf.glue)
- *
- *******************************************************************************/
-
-package org.eclipse.etrice.ui.common.concurrency;
-
-import org.eclipse.emf.common.util.URI;
-import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.xtext.resource.IResourceDescription;
-import org.eclipse.xtext.resource.IResourceServiceProvider;
-import org.eclipse.xtext.resource.XtextResource;
-import org.eclipse.xtext.resource.IResourceDescription.Manager;
-import org.eclipse.xtext.ui.editor.IDirtyResource;
-
-/**
- * An implementation of {@link IDirtyResource} for resources without an underlying document.
- *
- * @author Jan Koehnlein - Initial contribution and API
- * @author Henrik Rentz-Reichert
- *
- */
-public class SimpleDirtyResource implements IDirtyResource {
-
- private XtextResource resource;
-
- private Manager resourceDescriptionManager;
-
- public SimpleDirtyResource(XtextResource resource, IResourceServiceProvider resourceServiceProvider) {
- this.resource = resource;
- this.resourceDescriptionManager = resourceServiceProvider.getResourceDescriptionManager();
- }
-
- public String getContents() {
- return resource.getSerializer().serialize(resource.getContents().get(0));
- }
-
- public IResourceDescription getDescription() {
- return resourceDescriptionManager.getResourceDescription(resource);
- }
-
- public URI getURI() {
- return resource.getURI();
- }
-
- public Resource getResource() {
- return resource;
- }
-
- @Override
- public String getActualContents() {
- // hrr: added this
- return getContents();
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2010 protos software gmbh (http://www.protos.de).
+ * 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:
+ * Jan Koehnlein (Itemis, initially from org.eclipse.xtext.gmf.glue)
+ *
+ *******************************************************************************/
+
+package org.eclipse.etrice.ui.common.concurrency;
+
+import org.eclipse.emf.common.util.URI;
+import org.eclipse.emf.ecore.resource.Resource;
+import org.eclipse.xtext.resource.IResourceDescription;
+import org.eclipse.xtext.resource.IResourceServiceProvider;
+import org.eclipse.xtext.resource.XtextResource;
+import org.eclipse.xtext.resource.IResourceDescription.Manager;
+import org.eclipse.xtext.ui.editor.IDirtyResource;
+
+/**
+ * An implementation of {@link IDirtyResource} for resources without an underlying document.
+ *
+ * @author Jan Koehnlein - Initial contribution and API
+ * @author Henrik Rentz-Reichert
+ *
+ */
+public class SimpleDirtyResource implements IDirtyResource {
+
+ private XtextResource resource;
+
+ private Manager resourceDescriptionManager;
+
+ public SimpleDirtyResource(XtextResource resource, IResourceServiceProvider resourceServiceProvider) {
+ this.resource = resource;
+ this.resourceDescriptionManager = resourceServiceProvider.getResourceDescriptionManager();
+ }
+
+ public String getContents() {
+ return resource.getSerializer().serialize(resource.getContents().get(0));
+ }
+
+ public IResourceDescription getDescription() {
+ return resourceDescriptionManager.getResourceDescription(resource);
+ }
+
+ public URI getURI() {
+ return resource.getURI();
+ }
+
+ public Resource getResource() {
+ return resource;
+ }
+
+ @Override
+ public String getActualContents() {
+ // hrr: added this
+ return getContents();
+ }
+
+}

Back to the top