Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

41
LINES

< > BotCompany Repo | #614 // actionListener short-hand (JavaX translator)

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (129L/2K/5K).

// Syntax: actionListener { doSomething(); }

!592 1000265 // auto-importer, standard function adder 

public class main {
  public static void main(String[] args) throws Exception {
    String s = loadMainJava();
    
    Pattern regex = Pattern.compile("actionListener\\s*\\{");
    
    for (int i = 0; i < 100; i++) {
      Matcher matcher = regex.matcher(s);
      if (!matcher.find())
        break;

      System.out.println("Iteration " + (i+1));
      int start = matcher.start(), end = matcher.end();
      int endOfBlock = findEndOfBlock(s, end);
      
      String listener = "new java.awt.event.ActionListener() {\n" +
        "public void actionPerformed(java.awt.event.ActionEvent _evt) {\n" +
        s.substring(end, endOfBlock) + "\n}";
      s = s.substring(0, start) + listener + s.substring(endOfBlock);
    }
    
    saveMainJava(s);
  }
  
  // start is the index AFTER the opening bracket
  // returns index OF closing bracket
  static int findEndOfBlock(String s, int start) {
    int level = 1;
    for (int i = start; i < s.length(); i++) {
      if (s.charAt(i) == '{') ++level;
      else if (s.charAt(i) == '}') --level;
      if (level == 0)
        return i;
    }
    return s.length();
  }
}

Author comment

Began life as a copy of #605

download  show line numbers  debug dex  old transpilations   

Travelled to 17 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, dhtvkmknsjym, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, qbtsjoyahagl, teubizvjbppd, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #614
Snippet name: actionListener short-hand (JavaX translator)
Eternal ID of this version: #614/1
Text MD5: 5b4e99381d30dc46067cf504516ca592
Transpilation MD5: 3d132abba05311abfd73538b843d83ee
Author: stefan
Category:
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-01-29 18:39:23
Source code size: 1267 bytes / 41 lines
Pitched / IR pitched: No / No
Views / Downloads: 740 / 3778
Referenced in: [show references]