/src/mpv5/db/common/Templateable.java
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
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package mpv5.db.common;
- import mpv5.handler.FormatHandler;
- /**
- *
- * @author Andreas
- */
- public interface Templateable {
- public int templateType();
- public int templateGroupIds();
-
- public FormatHandler getFormatHandler();
- }