Package org.pdfclown.documents.interaction.actions

Examples of org.pdfclown.documents.interaction.actions.Action


  @Override
  public Action remove(
    Object key
    )
  {
    Action oldValue;
    if(PdfName.A.equals(key))
    {
      oldValue = getOnActivate();
      setOnActivate(null);
    }
View Full Code Here


  {
    Collection<PdfDirectObject> objects = getBaseDataObject().values();
    Collection<Action> values = new ArrayList<Action>(objects.size());
    for(PdfDirectObject object : objects)
    {values.add(Action.wrap(object,getContainer()));}
    Action action = getOnActivate();
    if(action != null)
    {values.add(action);}

    return values;
  }
View Full Code Here

TOP

Related Classes of org.pdfclown.documents.interaction.actions.Action

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.