NodeInterface.java 369 B

123456789101112131415161718
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package ast;
  7. import java.util.ArrayList;
  8. import java.util.HashMap;
  9. /**
  10. *
  11. * @author Eugenio
  12. */
  13. public abstract interface NodeInterface {
  14. // public abstract String onVisit();
  15. }