Package View

Examples of View.ContactView


            if(c == -1){
                JOptionPane.showMessageDialog(null, "Contact Not Found");
            }
            else{
                m_sView.dispose();
                m_cView = new ContactView(m_model, m_model.getContactInfo(c), c);
                m_cView.editOptionClicked(new EditOptionListener());
                m_cView.deleteOptionClicked(new DeleteOptionListener());
                m_cView.setVisible(true);
               
            }
View Full Code Here

TOP

Related Classes of View.ContactView

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.