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 RightsTImpl extends RightsT {

    public RightsTImpl()
    {
        super();
        right = new DynamicArrayList<Right>(RightImpl.class);

    }


    public boolean isRightEmpty()
    {
        return right == null || right.size() == 0;
    }
}