*
* @return The AA entry in this field dictionary.
*/
public PDAdditionalActions getAdditionalActions()
{
PDAdditionalActions retval = null;
COSDictionary dict = (COSDictionary)field.getDictionaryObject( COSName.AA );
if( dict != null )
{
retval = new PDAdditionalActions( dict );
}
return retval;
}