Subversion Repositories bacoAlunos

Rev

Rev 1506 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

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

import pt.estgp.estgweb.utils.DynamicArrayList;

import java.util.List;

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

public class SemestreImpl extends Curso.Semestre
{

    public List<UnidadeType> getUnidade() {
        if (unidade == null) {
            unidade = new DynamicArrayList<UnidadeType>(UnidadeImpl.class);
        }
        return this.unidade;
    }

    public List<Curso.Semestre.Perfil> getPerfil() {
        if (perfil == null) {
            perfil = new DynamicArrayList<Perfil>(PerfilImpl.class);
        }
        return this.perfil;
    }
}