Skip to contentMethod: getLib()
      1: package libraries;
2: 
3: /**
4:  * class for status: resolved.
5:  * 
6:  * @author Markus
7:  * 
8:  */
9: public class LibRefResolved extends LibRefState {
10: 
11:         /**
12:          * represents the library.
13:          */
14:         private Lib lib;
15: 
16:         /**
17:          * getter for the library.
18:          * 
19:          * @return Lib
20:          */
21:         public Lib getLib() {
22:                 return this.lib;
23:         }
24: 
25:         /**
26:          * setter for the library.
27:          * 
28:          * @param lib
29:          *            param Library.
30:          */
31:         public void setLib(final Lib lib) {
32:                 this.lib = lib;
33:         }
34: }