Constructors Summary |
---|
public AsfTagTextField(org.jaudiotagger.tag.asf.AsfFieldKey field, String value)Creates a tag text field and assigns the string value.
super(field);
toWrap.setString(value);
|
public AsfTagTextField(org.jaudiotagger.audio.asf.data.MetadataDescriptor source)Creates an instance.
super(source);
if (source.getType() == MetadataDescriptor.TYPE_BINARY) {
throw new IllegalArgumentException(
"Cannot interpret binary as string.");
}
|
public AsfTagTextField(String fieldKey, String value)Creates a tag text field and assigns the string value.
super(fieldKey);
toWrap.setString(value);
|