LabelValue.java

/*
 * $RCSfile: LabelValue.java,v $
* $Id: LabelValue.java,v 1.6 1998/11/30 02:21:07 devnull Exp $
* by Lee Wilson, http://www.ad1440.net/~devnull
* Development started on 1998 10 01
* (c) Devnull Software, LLC. (http://www.devnullsoftware.com)
*/

package com.devnullsoftware.config;

/**
  A label that can handle point-based parameters

  @author Lee Wilson
  @version 1.0
 */

public class LabelValue  {
  private String sLabel;
  private String sValue;

  public LabelValue (String sLabel, String sValue)  {
    this.sLabel = sLabel;
    this.sValue = sValue;
  }
  
  public String getLabel ()  {
    return sLabel;
  }

  public void setLabel (String s)  {
    sLabel = s;
  }

  public String getValue ()  {
    return sValue;
  }

  public void setValue (String s)  {
    sValue = s;
  }
}