Skip to contentPackage: SOName
SOName
Coverage
      1: package libraries;
2: 
3: /**
4:  * class for the structured object.
5:  * 
6:  * @author Markus, Hendrik
7:  * 
8:  */
9: public class SOName {
10:         /**
11:          * value of the Name.
12:          */
13:         private final String value;
14: 
15:         /**
16:          * constructor.
17:          * 
18:          * @param value
19:          *            name of the SoName
20:          */
21:         public SOName(final String value) {
22:                 this.value = value;
23:         }
24: 
25:         /**
26:          * @return the value
27:          */
28:         protected String getValue() {
29:                 return this.value;
30:         }
31: }