/************************************************************************** * * $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); } }