Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java')
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java72
1 files changed, 36 insertions, 36 deletions
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java
index bc8810e84..6e2b874ab 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java
@@ -1,39 +1,39 @@
-/*******************************************************************************
- * Copyright (c) 2013 IBM Corporation and others.
+/*******************************************************************************
+ * Copyright (c) 2013 IBM Corporation and others.
*
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
+ * This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.debug.examples.internal.memory.engine;
-
-import org.eclipse.debug.core.model.MemoryByte;
-
-/**
- * For testing addressable size > 1. Group each addressable unit in a MemoryByte
- * array.
- *
- */
-public class SampleMemoryUnit {
-
- MemoryByte[] fBytes;
-
- public SampleMemoryUnit(MemoryByte[] bytes) {
- fBytes = bytes;
- }
-
- public MemoryByte[] getBytes() {
- return fBytes;
- }
-
- public void setBytes(MemoryByte[] bytes) {
- fBytes = bytes;
- }
-
-}
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.debug.examples.internal.memory.engine;
+
+import org.eclipse.debug.core.model.MemoryByte;
+
+/**
+ * For testing addressable size > 1. Group each addressable unit in a MemoryByte
+ * array.
+ *
+ */
+public class SampleMemoryUnit {
+
+ MemoryByte[] fBytes;
+
+ public SampleMemoryUnit(MemoryByte[] bytes) {
+ fBytes = bytes;
+ }
+
+ public MemoryByte[] getBytes() {
+ return fBytes;
+ }
+
+ public void setBytes(MemoryByte[] bytes) {
+ fBytes = bytes;
+ }
+
+}

Back to the top