Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/display/ParameterValue.java @ 6152

Last change on this file since 6152 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 574 bytes
Line 
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 */
13package ec.display;
14
15/**
16 * @author spaus
17 */
18public 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.