Package clips.delegate.directory.complex

Examples of clips.delegate.directory.complex.DirectoryLaboratoryItem


    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);
      DirectoryLocator.getDirectory(DirectoryLaboratory.class, true);
      initList();
    }
    catch (ClipsException ex) {
View Full Code Here


    /**
     * Обновление списка чекапов (с сервера)
     */
    private void reloadFromServer() {                                            
        DirectoryLaboratoryItem laboratory = (DirectoryLaboratoryItem) jComboBox1.getSelectedItem();
        DirectoryServiceItem service = null;
        if (cbOnlyService.isSelected()) {
            service = selectedService;
        }
        boolean rendered = rbRendered.isSelected();
View Full Code Here

TOP

Related Classes of clips.delegate.directory.complex.DirectoryLaboratoryItem

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.