PageRenderTime 557ms CodeModel.GetById 23ms RepoModel.GetById 19ms app.codeStats 0ms

/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
Possible License(s): LGPL-3.0, Apache-2.0, GPL-3.0, GPL-2.0, AGPL-3.0, JSON, BSD-3-Clause
  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. }