How can I access fieldValue in FieldTag?

Hello,
I have a tag which extends FieldTag.
In Xapp 3.1.1 I had access to the fieldvalue variable.
How can I access to this value in Xapp4.1.1 ?
Thanks
Server

Hello,

instead of the protected member fieldValue of version X-Application 3.1.1 the class FieldTag offers two methods:

protected String getEditField()

and

protected String getDisplayField()

The difference is the encoding of the characters > , <, ', & .

However, when adapting the application I would try to transform the derived tag into a Plugin.

Bye,
Christian.