CodeProcessing.java 410 B

1234567891011121314151617
  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 IntermediaryCode;
  7. import java.util.LinkedHashMap;
  8. /**
  9. *
  10. * @author EUGENIO CARVALHO
  11. */
  12. public interface CodeProcessing {
  13. public void Exec(Code c, LinkedHashMap<String, CodeProcessing> cp) throws Exception;
  14. }