/* * Created on 2:31:25 PM,Mar 10, 2005 * * Author: Goncalo Luiz (goncalo@ist.utl.pt) * */ package net.sourceforge.fenixedu.dataTransferObject.externalServices; import net.sourceforge.fenixedu.domain.ExecutionCourse; /** * @author Goncalo Luiz * * Created at 2:31:25 PM, Mar 10, 2005 */ public class InfoExternalExecutionCourseInfo { private String name; /** * @return Returns the name. */ public String getName() { return this.name; } /** * @param name * The name to set. */ public void setName(String name) { this.name = name; } public static InfoExternalExecutionCourseInfo newFromExecutionCourse(ExecutionCourse executionCourse) { InfoExternalExecutionCourseInfo info = new InfoExternalExecutionCourseInfo(); info.setName(executionCourse.getNome()); return info; } }