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