package cutils.delegate;

/**
 Main.class  - final project
 @author: Job Shen
 Requirement:
 Syhthesize a cutils.delegate to a file, that
 1. interactively resolve ambiguous invokes using GUI
 2. make topologic sorting an option for resolution or let
 user select a method to resolve ambiguity
 3. add exception handling to the sythesized wrappers
 4. output to a file
 5. compile the file
 */

public class Main {
  public Main() {
    try {
      DelegateFrame df = new DelegateFrame();
      df.initComponents();
      //df.setVisible(true);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

  // Main entry point
  static public void main(String[] args) {
    new Main();
  }

}