Package clips.directory

Examples of clips.directory.DialogDirectoryMatter


}//GEN-LAST:event_btDeleteMatterActionPerformed

private void btAddMatterActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btAddMatterActionPerformed
    if (vidalItem != null)    {
        try {
            DialogDirectoryMatter dialog = new DialogDirectoryMatter(MainWindow.mainWindow, directoryMatter, "", true);
            dialog.setVisible(true);
            if (dialog.getDlgResult() == ModalDialog.DLG_OK){
                DirectoryMatterItem newItem = dialog.getSelectedItem();
                if (newItem != null) {
                    SelectorEditableExceptional<DirectoryMatterItem> s
                            =  directoryMatter.getFilteredItems(vidalItem);
                    if (newItem.getID() != 0) {
                        s.append(newItem);
View Full Code Here

TOP

Related Classes of clips.directory.DialogDirectoryMatter

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.