package net.kodeninja.DMAP.parameters.daap;
import net.kodeninja.DMAP.DataTypes.DMAPStringParameter;
/**
* Generated class for parameter: daap.songartist
*/
public class asar extends DMAPStringParameter {
/**
* Parameter Type
*/
private static final String PARAM_NAME = "daap.songartist";
/**
* Default constructor used when reading tags from a stream.
*/
public asar() {
super(PARAM_NAME);
}
/**
* Constructor used to create the tag.
* @param value The value of the parameter.
*/
public asar(String value) {
super(PARAM_NAME, value);
}
}
|