Package com.onpositive.gae.profiler.core

Examples of com.onpositive.gae.profiler.core.AccumulatedMethod


      }
      IProject prj = ((IFileEditorInput) getEditorInput()).getFile()
          .getProject();

      IJavaProject create = JavaCore.create(prj);
      AccumulatedMethod m = (AccumulatedMethod) object;
      IType findType;
      try {
        String replace = m.getClassName().replace('$', '.');
        findType = tp.get(replace);
        if (findType == null) {
          findType = create.findType(replace);
          tp.put(replace, findType);
        }
View Full Code Here


    if (trace instanceof MethodGroup) {
      MethodGroup c = (MethodGroup) trace;
      return pImage;
    }
    if (trace instanceof AccumulatedMethod){
      AccumulatedMethod ma=(AccumulatedMethod) trace;
      if (ma.getMethodName().length()==0){
        return jspImage;
      }
    }
    IMethod method = own.getMethod(trace);
    if (method != null) {
View Full Code Here

    return Activator.getDefault().getPreferenceStore();
  }

 
  protected RenderInfo getRenderInfo(Object trace) {
    AccumulatedMethod t = (AccumulatedMethod) trace;
    String name = t.getName();
    int blackLength = t.getName().indexOf(')') + 1;
    if (blackLength == 0) {
      blackLength = name.length() + 1;
    }
    return new RenderInfo(blackLength, name);
  }
View Full Code Here

  public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
    input=(Snapshot) newInput;
  }

  public Object[] getChildren(Object parentElement) {
    AccumulatedMethod ma=(AccumulatedMethod) parentElement;
   
    return input.getCalles(ma);
  }
View Full Code Here

TOP

Related Classes of com.onpositive.gae.profiler.core.AccumulatedMethod

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.