AllocatorInterface.java 381 B

12345678910111213141516171819
  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 common;
  7. import common.Code;
  8. /**
  9. *
  10. * @author EUGENIO CARVALHO
  11. */
  12. public interface AllocatorInterface {
  13. public void Alloc(Code c);
  14. public void Get(String id, int position);
  15. }