Package org.apache.kato.common

Examples of org.apache.kato.common.IDataProvider


public class HProfFactory {

 
 
  public static HProfFile createReader(File reader) throws IOException {
    IDataProvider provider =new CachedRandomAccesDataProvider(reader);
    HProfFile hprofFile= new HProfFile(provider);
    hprofFile.setSource(reader);
    return hprofFile;
   
  }
View Full Code Here


    public Object getCurrentElement() {
      // read tag
      try {
        long l = getProvider().getCurrentLocation();

        IDataProvider p = getProvider();
        if (p.dataRemaining() < 1)
          return null;
        short tag = p.readByte();
        int size = getRecordSize(tag);
        byte[] data = null;
        if (size >= 0) {
          data = getProvider().readBytes(size);
        }
View Full Code Here

TOP

Related Classes of org.apache.kato.common.IDataProvider

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.