Package com.itextpdf.text.io

Examples of com.itextpdf.text.io.IndependentRandomAccessSource


     * @deprecated use {@link RandomAccessFileOrArray#createView()} instead
     * @param source the source for the new independent view
     */
    @Deprecated
    public RandomAccessFileOrArray(RandomAccessFileOrArray source) {
      this(new IndependentRandomAccessSource(source.byteSource));
    }
View Full Code Here


     * Creates an independent view of this object (with it's own file pointer and pushback queue).  Closing the new object will not close this object.
     * Closing this object will have adverse effect on the view.
     * @return the new view
     */
    public RandomAccessFileOrArray createView(){
      return new RandomAccessFileOrArray(new IndependentRandomAccessSource(byteSource));
    }
View Full Code Here

    public RandomAccessFileOrArray createView(){
      return new RandomAccessFileOrArray(new IndependentRandomAccessSource(byteSource));
    }
   
    public RandomAccessSource createSourceView() {
        return new IndependentRandomAccessSource(byteSource);
    }
View Full Code Here

TOP

Related Classes of com.itextpdf.text.io.IndependentRandomAccessSource

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.