Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.impl / src / main / java / org / gvsig / fmap / dal / feature / impl / indexes / memorybasictypes / ListOfLong.java @ 44158

History | View | Annotate | Download (483 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.fmap.dal.feature.impl.indexes.memorybasictypes;
7

    
8
import java.util.List;
9

    
10
/**
11
 *
12
 * @author jjdelcerro
13
 */
14
public interface ListOfLong extends List<Long>{
15
    
16
    public long getLong(int index);
17
    
18
    public boolean removeLong(long o);
19
    
20
    public boolean add(long e);
21

    
22

    
23
}