public void clear() { _npcInfos.clear(); _npcInfosByNpcId.clear(); }
public AionNpc getNpcByNpcId(int npcId) { return _npcInfosByNpcId.get(npcId); }
public Collection<AionNpc> valuesNpc() { return _npcInfosByNpcId.values(); }
public void addNpcByNpcId(int npcId, AionNpc npc) { _npcInfosByNpcId.put(npcId, npc); }
public AionNpc getNpc(int obj) { return _npcInfos.get(obj); }
public void addNpc(int obj, AionNpc npc) { _npcInfos.put(obj, npc); }
@Override public void clear() { _templates.clear(); }
@Override public int size() { return _templates.size(); }
public OptionDataTemplate getTemplate(int id) { return _templates.get(id); }
public void addTemplate(OptionDataTemplate template) { _templates.put(template.getId(), template); }