Package beans.laboratory

Examples of beans.laboratory.LaboratoryDetails


    if (isDirty()){
      MessageBox.showWarning(MessageBox.W_NOT_CLOSE_EDITING);
      return;
    }
    try {
      LaboratoryDetails det = new LaboratoryDetails();
      det.title = "новая лаборатория";
      det.lpuId = UserInfo.get().getCollaborator().getLpu().getID();
      DirectoryLaboratory    dir = DirectoryLocator.getDirectory(DirectoryLaboratory.class);
      DirectoryLaboratoryItem    item = new DirectoryLaboratoryItem(det);
      dir.getItems().append(item);
View Full Code Here


        return "Кабинеты";
    }

    @Override
    protected DirectoryLaboratoryItem createFromLoadedDetails(DirectoryItemDetails details) {
        LaboratoryDetails d = (LaboratoryDetails) details;
        return new DirectoryLaboratoryItem(d);
    }
View Full Code Here

        return new DirectoryLaboratoryItem(d);
    }

    @Override
    protected DirectoryLaboratoryItem createNullItem() {
        LaboratoryDetails d = new LaboratoryDetails();
        d.title = "Кабинет не определен";
        return createFromLoadedDetails(d);
    }
View Full Code Here

TOP

Related Classes of beans.laboratory.LaboratoryDetails

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.