Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / rendering / legend / IInterval.java @ 28092

History | View | Annotate | Download (482 Bytes)

1
package org.gvsig.fmap.mapcontext.rendering.legend;
2

    
3
public interface IInterval {
4

    
5
        /**
6
         * Devuelve "true" si el double que se pasa como par?metro esta dentro del
7
         * intervalo.
8
         *
9
         * @param check dou?l??a comprobar.
10
         *
11
        ?* @return "true" si est? dentro del intervalo.
12
         */
13
        public abstract boolean isInInterval(Object v);
14

    
15
        /**
16
         * Devuelve un string con la informaci?n de inicio y final.
17
         *
18
         * @return String.
19
         */
20
        public abstract String toString();
21

    
22
}