Package service

Examples of service.RemoveWordService


        pack();
    }// </editor-fold>//GEN-END:initComponents

    private void removeButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_removeButtonActionPerformed
       
        RemoveWordService serviceCall = new RemoveWordService();
       
        if(!wordInput.getText().equals("")){
            if(serviceCall.removeWord(wordInput.getText())) {
                statusLabel.setText("<html>Your word has been removed!<html>");
           
            }else {
                statusLabel.setText("<html>There was an error when removing your word.<html>");
            }
View Full Code Here

TOP

Related Classes of service.RemoveWordService

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.