source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/dao/ColorTabDAO.java @ 68

Last change on this file since 68 was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 778 bytes
Line 
1package org.medias.eccad.persistance.dao;
2
3import java.util.List;
4
5import org.medias.eccad.modele.ColorMap;
6import org.medias.eccad.modele.ColorTab;
7import org.medias.eccad.persistance.exception.PersistanceException;
8
9public interface ColorTabDAO {
10        public abstract ColorTab getColorMapByID(long id)  throws PersistanceException;
11        public abstract ColorTab getColorMapByParam(int idparam) throws PersistanceException;
12        public abstract ColorTab getColorMapByGrille(long id_grille) throws PersistanceException;
13        public abstract List<ColorMap> getListColorTabByGrille(long id_grille) throws PersistanceException;
14        public abstract List<ColorMap> getListColorTab() throws PersistanceException;
15        public abstract List<ColorMap> getListColorMapDynamique() throws PersistanceException;
16}
Note: See TracBrowser for help on using the repository browser.