blob: 71fc9b79731e9ae55e54e566394ea1918643e03c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
}
}
|