Package algoD.interpreter

Examples of algoD.interpreter.CODE


    private void codeFileAreaActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_codeFileAreaActionPerformed
        // TODO add your handling code here:
    }//GEN-LAST:event_codeFileAreaActionPerformed

    private void doRUNActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_doRUNActionPerformed
        StData.currentCode = new CODE(CodeName.getText());
        String line = "START";
        int S = 0, E = 0, L = 0;
        String[] lines = CODE_AREA.getText().split("\\n");
        for(String s : lines){
            StData.currentCode.addLine(s);
View Full Code Here

TOP

Related Classes of algoD.interpreter.CODE

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.