summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/property/PropertyArrayList.java
blob: f59b2d59c92c424ba138fec0dfc83aa7f216f875 (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<Property>
{
    public PropertyArrayList()
    {
        super();
    }

    public PropertyArrayList(ArrayList<Property> aList)
    {
        super(aList);
    }


}