Package org.pdfclown.util

Examples of org.pdfclown.util.NotImplementedException


  // <public>
  @Override
  public NamedAction clone(
    Document context
    )
  {throw new NotImplementedException();}
View Full Code Here


  // <public>
  @Override
  public PlayMovie clone(
    Document context
    )
  {throw new NotImplementedException();}
View Full Code Here

    */
    PdfDirectObject annotationObject = getBaseDataObject().get(PdfName.Annotation);
    if(annotationObject == null)
    {
      annotationObject = getBaseDataObject().get(PdfName.T);
      throw new NotImplementedException("No by-title movie annotation support currently: we have to implement a hook to the page of the referenced movie to get it from its annotations collection.");
    }
    return new Movie(annotationObject, getContainer());
  }
View Full Code Here

  // <public>
  @Override
  public ImportData clone(
    Document context
    )
  {throw new NotImplementedException();}
View Full Code Here

  // <public>
  @Override
  public DoTransition clone(
    Document context
    )
  {throw new NotImplementedException();}
View Full Code Here

  // <public>
  @Override
  public GoToRemote clone(
    Document context
    )
  {throw new NotImplementedException();}
View Full Code Here

  // <public>
  @Override
  public SubmitForm clone(
    Document context
    )
  {throw new NotImplementedException();}
View Full Code Here

  @Override
  public ListIterator<Action> listIterator(
    int index
    )
  {throw new NotImplementedException();}
View Full Code Here

  @Override
  public List<Action> subList(
    int fromIndex,
    int toIndex
    )
  {throw new NotImplementedException();}
View Full Code Here

  @Override
  public boolean containsAll(
    Collection<?> values
    )
  {throw new NotImplementedException();}
View Full Code Here

TOP

Related Classes of org.pdfclown.util.NotImplementedException

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.