aboutsummaryrefslogtreecommitdiffstats
path: root/util/src
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2002-12-18 01:37:07 +0000
committerjhugunin <jhugunin>2002-12-18 01:37:07 +0000
commitbf459dfaf201caeaf3e099408a11e08cd542c752 (patch)
treedeb493a88b0a488428c4e44d59a82a3611c73864 /util/src
parent96db4fbc4c83aac5411e25199ea237584b836036 (diff)
downloadaspectj-bf459dfaf201caeaf3e099408a11e08cd542c752.tar.gz
aspectj-bf459dfaf201caeaf3e099408a11e08cd542c752.zip
wildcarded type patterns now remember there scope information
so they can do matching of local names
Diffstat (limited to 'util/src')
-rw-r--r--util/src/org/aspectj/util/FileUtil.java26
1 files changed, 25 insertions, 1 deletions
diff --git a/util/src/org/aspectj/util/FileUtil.java b/util/src/org/aspectj/util/FileUtil.java
index a0d445cfe..b9a91b001 100644
--- a/util/src/org/aspectj/util/FileUtil.java
+++ b/util/src/org/aspectj/util/FileUtil.java
@@ -825,7 +825,7 @@ public class FileUtil {
/**
- * Reads an int array with our encoding
+ * Writes an int array with our encoding
*/
public static void writeIntArray(DataOutputStream s, int[] a) throws IOException {
int len = a.length;
@@ -835,6 +835,30 @@ public class FileUtil {
+ /**
+ * Reads an int array with our encoding
+ */
+ public static String[] readStringArray(DataInputStream s) throws IOException {
+ int len = s.readInt();
+ String[] ret = new String[len];
+ for (int i=0; i < len; i++) ret[i] = s.readUTF();
+ return ret;
+ }
+
+
+ /**
+ * Writes an int array with our encoding
+ */
+ public static void writeStringArray(DataOutputStream s, String[] a) throws IOException {
+ if (a == null) {
+ s.writeInt(0);
+ return;
+ }
+ int len = a.length;
+ s.writeInt(len);
+ for (int i=0; i < len; i++) s.writeUTF(a[i]);
+ }
+
/**
* Returns the contents of this file as a String