diff options
Diffstat (limited to 'source/com/c2kernel/property')
| -rw-r--r--[-rwxr-xr-x] | source/com/c2kernel/property/PropertyArrayList.java | 4 | ||||
| -rw-r--r--[-rwxr-xr-x] | source/com/c2kernel/property/PropertyDescriptionList.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source/com/c2kernel/property/PropertyArrayList.java b/source/com/c2kernel/property/PropertyArrayList.java index 71fc9b7..dffbaf6 100755..100644 --- a/source/com/c2kernel/property/PropertyArrayList.java +++ b/source/com/c2kernel/property/PropertyArrayList.java @@ -13,14 +13,14 @@ import java.util.ArrayList; import com.c2kernel.utils.CastorArrayList;
-public class PropertyArrayList extends CastorArrayList
+public class PropertyArrayList extends CastorArrayList<Property>
{
public PropertyArrayList()
{
super();
}
- public PropertyArrayList(ArrayList aList)
+ public PropertyArrayList(ArrayList<Property> aList)
{
super(aList);
}
diff --git a/source/com/c2kernel/property/PropertyDescriptionList.java b/source/com/c2kernel/property/PropertyDescriptionList.java index 596aa52..64754a7 100755..100644 --- a/source/com/c2kernel/property/PropertyDescriptionList.java +++ b/source/com/c2kernel/property/PropertyDescriptionList.java @@ -14,14 +14,14 @@ import java.util.Iterator; import com.c2kernel.utils.CastorArrayList;
-public class PropertyDescriptionList extends CastorArrayList
+public class PropertyDescriptionList extends CastorArrayList<PropertyDescription>
{
public PropertyDescriptionList()
{
super();
}
- public PropertyDescriptionList(ArrayList aList)
+ public PropertyDescriptionList(ArrayList<PropertyDescription> aList)
{
super(aList);
}
|
