* @return The actions of the field.
*/
public PDFormFieldAdditionalActions getActions()
{
COSDictionary aa = (COSDictionary)dictionary.getDictionaryObject( "AA" );
PDFormFieldAdditionalActions retval = null;
if( aa != null )
{
retval = new PDFormFieldAdditionalActions( aa );
}
return retval;
}