Statistics
| Revision:

root / branches / v2_0_0_prep / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / layers / operations / XMLItem.java @ 21200

History | View | Annotate | Download (307 Bytes)

1
package org.gvsig.fmap.mapcontext.layers.operations;
2

    
3
import org.gvsig.fmap.mapcontext.layers.FLayer;
4
import org.xml.sax.ContentHandler;
5
import org.xml.sax.SAXException;
6

    
7

    
8
public interface XMLItem {
9
                public void parse(ContentHandler handler) throws SAXException;
10
                public FLayer getLayer();
11
}
12