
com.draagon.util.Param Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of draagon-utilities Show documentation
Show all versions of draagon-utilities Show documentation
Draagon Utilities used by other Draagon projects
The newest version!
/*
* Copyright 2001 Draagon Software LLC. All Rights Reserved.
*
* This software is the proprietary information of Draagon Software LLC.
* Use is subject to license terms.
*/
package com.draagon.util;
public class Param
{
private String mName = null;
private String mValue = null;
public Param( String name, String value )
{
setName( name );
setValue( value );
}
public void setName( String name ) { mName = name; }
public String getName() { return mName; }
public void setValue( String value ) { mValue = value; }
public String getValue() { return mValue; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy