TemplateDescription.java 454 B

1234567891011121314151617181920
  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 templates;
  7. import java.util.HashMap;
  8. /**
  9. *
  10. * @author EUGENIO CARVALHO
  11. */
  12. public interface TemplateDescription {
  13. public HashMap<String, String> Formats() throws Exception;
  14. public HashMap<String, FunctionInterface> Functions() throws Exception;
  15. }