Revision 654 org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.lib/src/main/java/org/gvsig/tools/library/AbstractLibrary.java

View differences:

AbstractLibrary.java
62 62

  
63 63
        Class library;
64 64
        String type;
65
        private boolean added = false;
65 66

  
66 67
        Required(Class library, String type) {
67 68
            this.library = library;
......
80 81
            return this.library.toString() + ":"
81 82
                + (this.type == null ? "UNDEFINED" : this.type.toUpperCase());
82 83
        }
84

  
85
        /**
86
         * @return the added
87
         */
88
        public boolean isAdded() {
89
            return added;
90
        }
91

  
92
        /**
93
         * @param added
94
         *            the added to set
95
         */
96
        public void setAdded(boolean added) {
97
            this.added = added;
98
        }
83 99
    }
84 100

  
85 101
    /**

Also available in: Unified diff