summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/property/PropertyArrayList.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/property/PropertyArrayList.java')
-rwxr-xr-xsource/com/c2kernel/property/PropertyArrayList.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/source/com/c2kernel/property/PropertyArrayList.java b/source/com/c2kernel/property/PropertyArrayList.java
new file mode 100755
index 0000000..71fc9b7
--- /dev/null
+++ b/source/com/c2kernel/property/PropertyArrayList.java
@@ -0,0 +1,29 @@
+/**************************************************************************
+ *
+ * $Revision: 1.2 $
+ * $Date: 2003/06/20 11:44:30 $
+ *
+ * Copyright (C) 2001 CERN - European Organization for Nuclear Research
+ * All rights reserved.
+ **************************************************************************/
+
+package com.c2kernel.property;
+
+import java.util.ArrayList;
+
+import com.c2kernel.utils.CastorArrayList;
+
+public class PropertyArrayList extends CastorArrayList
+{
+ public PropertyArrayList()
+ {
+ super();
+ }
+
+ public PropertyArrayList(ArrayList aList)
+ {
+ super(aList);
+ }
+
+
+}