Package beans.enumeration

Examples of beans.enumeration.Utilization


    private void SaveJButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_SaveJButtonActionPerformed
        final String sName = name.getText();
        final String sDescr = description.getText();
        final Target sTarget = (Target)target.getSelectedItem();
        final Utilization sUse = (Utilization)use.getSelectedItem();
        //TODO : Rajouter nombre de tour
        final Spell spell = new Spell (sName, sDescr, sTarget, listChangeStatut, cost, sUse, 1);
        guiModel.initSpellPopUpResponse(spell);
        this.reset();
    }//GEN-LAST:event_SaveJButtonActionPerformed
View Full Code Here


    private void SaveJButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_SaveJButtonActionPerformed
        final String sName = name.getText();
        final String sDescr = description.getText();
        final Target sTarget = (Target)target.getSelectedItem();
        final Utilization sUse = (Utilization)use.getSelectedItem();
        //TODO : rajouter nombre de tour
        final Skill skill = new Skill (sName, sDescr, sTarget, listChangeStatut, cost, sUse, 1);
        guiModel.initSkillPopUpResponse(skill);
        this.reset();
    }//GEN-LAST:event_SaveJButtonActionPerformed
View Full Code Here

    private void SaveJButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_SaveJButtonActionPerformed
        final String sName = name.getText();
        final String sDescr = description.getText();
        final Target sTarget = (Target)target.getSelectedItem();
        final Utilization sUse = (Utilization)use.getSelectedItem();
       
        final Objet objet = new Objet (sName, sDescr, sTarget, listChangeStatut, sUse);
        guiModel.initObjectPopUpResponse(objet);
        this.reset();
    }//GEN-LAST:event_SaveJButtonActionPerformed
View Full Code Here

TOP

Related Classes of beans.enumeration.Utilization

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.