Last change
on this file since 9449 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
574 bytes
|
Rev | Line | |
---|
[6152] | 1 | /* |
---|
| 2 | Copyright 2006 by Sean Paus |
---|
| 3 | Licensed under the Academic Free License version 3.0 |
---|
| 4 | See the file "LICENSE" for more information |
---|
| 5 | */ |
---|
| 6 | |
---|
| 7 | |
---|
| 8 | /* |
---|
| 9 | * Created on Apr 19, 2005 10:30:19 PM |
---|
| 10 | * |
---|
| 11 | * By: spaus |
---|
| 12 | */ |
---|
| 13 | package ec.display; |
---|
| 14 | |
---|
| 15 | /** |
---|
| 16 | * @author spaus |
---|
| 17 | */ |
---|
| 18 | public class ParameterValue |
---|
| 19 | { |
---|
| 20 | |
---|
| 21 | final String value; |
---|
| 22 | |
---|
| 23 | public ParameterValue(String value) |
---|
| 24 | { |
---|
| 25 | this.value = value; |
---|
| 26 | } |
---|
| 27 | |
---|
| 28 | public String getValue() |
---|
| 29 | { |
---|
| 30 | return value; |
---|
| 31 | } |
---|
| 32 | |
---|
| 33 | public String toString() |
---|
| 34 | { |
---|
| 35 | return "*"+value+"*"; |
---|
| 36 | } |
---|
| 37 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.