Package org.apache.pdfbox.pdmodel.interactive.action

Examples of org.apache.pdfbox.pdmodel.interactive.action.PDAdditionalActions


     *
     * @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;
    }
View Full Code Here


     *
     * @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;
    }
View Full Code Here

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

        return retval;
    }
View Full Code Here

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

        return retval;
    }
View Full Code Here

TOP

Related Classes of org.apache.pdfbox.pdmodel.interactive.action.PDAdditionalActions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.