Revision 44419 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/impl/DefaultDataServerExplorerPoolEntry.java

View differences:

DefaultDataServerExplorerPoolEntry.java
37 37

  
38 38
    }
39 39

  
40
    @Override
40 41
    public String getName() {
41 42
        return this.name;
42 43
    }
43 44

  
45
    @Override
44 46
    public void copyTo(DataServerExplorerPoolEntry target) {
45 47
        DefaultDataServerExplorerPoolEntry other = (DefaultDataServerExplorerPoolEntry)target;
46 48
        other.name = this.name;
......
48 50
        other.explorer = this.explorer;                 
49 51
    }
50 52
    
53
    @Override
51 54
    public DataServerExplorerParameters getExplorerParameters() {
52 55
        return this.explorer;
53 56
    }
54 57

  
58
    @Override
55 59
    public String getDescription() {
56 60
        return this.description;
57 61
    }
58 62

  
63
    @Override
59 64
    public void saveToState(PersistentState state) throws PersistenceException {
60 65
        state.set("name", this.name);
61 66
        state.set("description", this.description);
62 67
        state.set("explorer", this.explorer);
63 68
    }
64 69

  
70
    @Override
65 71
    public void loadFromState(PersistentState state) throws PersistenceException {
66 72
        this.description = state.getString("description");
67 73
        this.name = state.getString("name");

Also available in: Unified diff