/src/mpv5/db/common/Templateable.java

http://mp-rechnungs-und-kundenverwaltung.googlecode.com/ · Java · 21 lines · 7 code · 6 blank · 8 comment · 0 complexity · 3d2bfc4dacd4ebdffa2df64222998af1 MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package mpv5.db.common;
  6. import mpv5.handler.FormatHandler;
  7. /**
  8. *
  9. * @author Andreas
  10. */
  11. public interface Templateable {
  12. public int templateType();
  13. public int templateGroupIds();
  14. public FormatHandler getFormatHandler();
  15. }