Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 6914 |
dpurdie |
1 |
package com.erggroup.buildtool.utilities;
|
|
|
2 |
|
|
|
3 |
/**String wrapper used for output parameters
|
|
|
4 |
*/
|
|
|
5 |
public class MutableString
|
|
|
6 |
{
|
|
|
7 |
/**wrapped value
|
|
|
8 |
* @attribute
|
|
|
9 |
*/
|
|
|
10 |
public String value = new String("");
|
|
|
11 |
}
|