]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added copyarray method.
authorPeter Bernard West <pbwest@apache.org>
Mon, 5 Jan 2004 01:49:50 +0000 (01:49 +0000)
committerPeter Bernard West <pbwest@apache.org>
Mon, 5 Jan 2004 01:49:50 +0000 (01:49 +0000)
Added javadoc comment on class.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197117 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/datastructs/ROIntArray.java

index c71596e1ff7ca3e386dfeb5f7da71c7912629955..392a38ed3363342ddb59e9f289b84f2c462c761b 100644 (file)
@@ -1,7 +1,4 @@
-/**
- * Provides a Read-Only <tt>int</tt> array.
- *
- * 
+/*
  * ============================================================================
  *                   The Apache Software License, Version 1.1
  * ============================================================================
 // $Id$
 package org.apache.fop.datastructs;
 
+/**
+ * Provides a Read-Only <tt>int</tt> array.
+ * 
+ * @author pbw
+ */
 public class ROIntArray {
     
     private int[] iarray;
@@ -104,4 +106,13 @@ public class ROIntArray {
     public int get(int index) {
         return iarray[index];
     }
+    
+    /**
+     * @return a copy of the array
+     */
+    public int[] copyarray() {
+        int[] tmp = null;
+        System.arraycopy(iarray, 0, tmp, 0, iarray.length);
+        return tmp;
+    }
 }