NicknameProperty
This class represents the "NICKNAME" property
This class should be called with two arguments, the first an array of the parameters, and the second the value of the property
The only acceptable parameters of
NicknameProperty
areValueParameter
,TypeParameter
,LanguageParameter
,AltidParameter
,PIDParameter
,PrefParameter
,IndexParameter
andAnyParameter
If you do not wish that the property have any parameters, leave the first argument array empty
The value of
NicknameProperty
should be of typeTextType
orTextListType
new NicknameProperty([], new TextType("Robbie"));
new NicknameProperty(
[],
new TextListType([new TextType("Jim"), new TextType("Jimmie")]),
);
new NicknameProperty(
[new TypeParameter("nicknameproperty", new ParameterValueType("work"))],
new TextType("Boss"),
);