Package com.art.anette.client.controller

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


     * Die Daten des Arbeitspakets werden ausgelesen und angezeigt.
     */
    @Override
    protected void update() {
        WorkPackage workPackage = (WorkPackage) dataObject;
        WorkPackageDetailedInformation wdi = logic.getWorkPackageDetailedInfo(workPackage);

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

TOP

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

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.