/src/mpv5/db/common/Templateable.java
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 6package mpv5.db.common; 7 8import mpv5.handler.FormatHandler; 9 10/** 11 * 12 * @author Andreas 13 */ 14public interface Templateable { 15 16 public int templateType(); 17 18 public int templateGroupIds(); 19 20 public FormatHandler getFormatHandler(); 21}