Skip to contentPackage: Program
Program
Coverage
      1: package libraries;
2: 
3: /**
4:  * class for programs.
5:  */
6: public class Program extends Module {
7: 
8:         /**
9:          * represents the rpath.
10:          */
11:         private RPath rpath;
12: 
13:         /**
14:          * getter for RPAth.
15:          * 
16:          * @return RPath
17:          */
18:         public RPath getRpath() {
19:                 return this.rpath;
20:         }
21: 
22:         /**
23:          * setter for RPAth.
24:          * 
25:          * @param rpath
26:          *            param rpath.
27:          */
28:         public void setRpath(final RPath rpath) {
29:                 this.rpath = rpath;
30:         }
31: 
32:         /*
33:          * (non-Javadoc)
34:          * 
35:          * @see java.lang.Object#toString()
36:          */
37:         @Override
38:         public String toString() {
39:                 final StringBuilder builder = new StringBuilder();
40:                 builder.append("Program [rpath=");
41:                 builder.append(this.rpath);
42:                 builder.append("]");
43:                 return builder.toString();
44:         }
45: 
46: }