Statistics
| Revision:

root / branches / Mobile_Compatible_Hito_1 / libFMap / src-data / org / gvsig / data / vectorial / AttributeStoreNotification.java @ 21606

History | View | Annotate | Download (644 Bytes)

1
package org.gvsig.data.vectorial;
2

    
3

    
4
public class AttributeStoreNotification implements IFeatureAttributeNotification {
5

    
6
        private IFeatureStore store;
7
        private String type;
8
        private IFeatureAttributeDescriptor attributeDescriptor;
9

    
10
        public AttributeStoreNotification(IFeatureStore store, String type, IFeatureAttributeDescriptor attributeDescriptor){
11
                this.store=store;
12
                this.type=type;
13
                this.attributeDescriptor=attributeDescriptor;
14

    
15
        }
16
        public IFeatureType getFeatureType() {
17
                // TODO Auto-generated method stub
18
                return null;
19
        }
20

    
21
        public String getPreviousFeatureFieldValue() {
22
                // TODO Auto-generated method stub
23
                return null;
24
        }
25

    
26

    
27

    
28
}