Group.java :  » Geo » geonote » org » geonote » types » Android Open Source

Android Open Source » Geo » geonote 
geonote » org » geonote » types » Group.java
/**
 * 
 */

package org.geonote.types;

import java.util.ArrayList;
import java.util.Collection;

/**
 * 
 */
public class Group<T extends GeoNoteType> extends ArrayList<T> implements GeoNoteType {

    private static final long serialVersionUID = 1L;

    private String mType;

    public Group() {
        super();
    }

    public Group(Collection<T> collection) {
        super(collection);
    }

    public void setType(String type) {
        mType = type;
    }

    public String getType() {
        return mType;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.