summaryrefslogtreecommitdiff
path: root/gnu/CORBA/CDR/BufferredCdrInput.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/CORBA/CDR/BufferredCdrInput.java')
-rw-r--r--gnu/CORBA/CDR/BufferredCdrInput.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/CORBA/CDR/BufferredCdrInput.java b/gnu/CORBA/CDR/BufferredCdrInput.java
index f0159a88d..accb65a0d 100644
--- a/gnu/CORBA/CDR/BufferredCdrInput.java
+++ b/gnu/CORBA/CDR/BufferredCdrInput.java
@@ -45,14 +45,14 @@ package gnu.CORBA.CDR;
* @author Audrius Meskauskas (AudriusA@Bioinformatics.org)
*/
public class BufferredCdrInput
- extends AbstractCdrInput
+ extends AbstractCdrInput
implements gnuValueStream
{
- /**
- * Use serialVersionUID for interoperability.
+ /**
+ * Use serialVersionUID for interoperability.
*/
private static final long serialVersionUID = 1;
-
+
/**
* The byte array input stream to read data from.
*/
@@ -114,17 +114,17 @@ public class BufferredCdrInput
buffer.reset();
setInputStream(buffer);
}
-
+
/**
* Get the current position in the buffer.
- *
+ *
* @return The position in the buffer, taking offset into consideration.
*/
public int getPosition()
{
return buffer.getPosition();
}
-
+
/**
* Jump to the given position, taking offset into consideration.
*/
@@ -133,15 +133,15 @@ public class BufferredCdrInput
buffer.seek(position);
setInputStream(buffer);
}
-
+
/**
* Get the associated RunTime.
*/
public gnuRuntime getRunTime()
{
return runtime;
- }
-
+ }
+
/**
* Replace the instance of RunTime.
*/
@@ -149,5 +149,5 @@ public class BufferredCdrInput
{
runtime = a_runtime;
}
-
+
}