From 254ee6f47eebfc00462c10756a92066e82cc1a96 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Tue, 21 Jun 2011 15:46:02 +0200 Subject: Initial commit --- .../com/c2kernel/property/PropertyArrayList.java | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 source/com/c2kernel/property/PropertyArrayList.java (limited to 'source/com/c2kernel/property/PropertyArrayList.java') 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); + } + + +} -- cgit v1.2.3