Package com.art.anette.client.controller

Examples of com.art.anette.client.controller.ProjectDetailedInformation


     * Die Daten des Projektes werden ausgelesen und angezeigt.
     */
    @Override
    protected void update() {
        Project project = (Project) dataObject;
        ProjectDetailedInformation pdi = logic.getProjectDetailedInfo(project);

        lblName.setText(project.getName());
        lblManager.setText(project.getManager().toString());
        lblStart.setText(DateTimeUtils.formatDate(project.getStart()));
        lblEnd.setText(DateTimeUtils.formatDate(project.getEnd()));
View Full Code Here

TOP

Related Classes of com.art.anette.client.controller.ProjectDetailedInformation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.