Skip to contentMethod: getName()
      1: package libraries;
2: 
3: /**
4:  * class for RPath.
5:  * 
6:  * @author Markus
7:  * 
8:  */
9: public class RPath {
10:         /**
11:          * The Name for the RPath.
12:          */
13:         private final String name;
14: 
15:         /**
16:          * constructor.
17:          * 
18:          * @param name
19:          *            the RPathName
20:          */
21:         public RPath(final String name) {
22:                 super();
23:                 this.name = name;
24:         }
25: 
26:         /**
27:          * @return the name
28:          */
29:         public final String getName() {
30:                 return this.name;
31:         }
32: 
33: }