Subversion Repositories bacoAlunos

Rev

Rev 1068 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.services.directories.xsd;

import pt.estgp.estgweb.utils.DynamicArrayList;

/**
 * Created by jorgemachado on 16/11/15.
 */

public class GroupsDeclarationTImpl extends GroupDeclarationT
{
    public GroupsDeclarationTImpl()
    {
        super();
        group = new DynamicArrayList<Group>(GroupImpl.class);
    }

    public boolean isGroupEmpty()
    {
        return group == null || group.size() == 0;
    }
}