forked from geodmms/xdgnjobs

?? ?
2008-08-25 6217eaaf64d69992c0d92acde640e44a2ac5d910
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ximple.eofms.collector;
 
import java.util.TreeMap;
 
public class FeatureClassification
{
    private TreeMap<String, FeatureTypeCollector> clasificationRules;
 
    public FeatureClassification()
    {
        clasificationRules = new TreeMap<String, FeatureTypeCollector>();
    }
 
    public void addCollector(FeatureTypeCollector collector)
    {
        collector.getName();
    }
 
    public boolean containsKey(String typeName)
    {
        return clasificationRules.containsKey(typeName);
    }
 
    public TreeMap<String, FeatureTypeCollector> getClasificationRules()
    {
        return clasificationRules;
    }
}