Package soot.tagkit

Examples of soot.tagkit.Tag


            Scene.v().setPointsToAnalysis(onDemandAnalysis);
        }
    }
   
    protected void addTags( PAG pag ) {
        final Tag unknown = new StringTag( "Untagged Spark node" );
        final Map<Node, Tag> nodeToTag = pag.getNodeTags();
        for( Iterator cIt = Scene.v().getClasses().iterator(); cIt.hasNext(); ) {
            final SootClass c = (SootClass) cIt.next();
            for( Iterator mIt = c.methodIterator(); mIt.hasNext(); ) {
                SootMethod m = (SootMethod) mIt.next();
View Full Code Here


  public MethodTranslatorImpl(StatementTranslatorFacade facade) {
    this.statementTranslator = facade;
  }
 
  private void findSourceFile() {
    Tag tag = sootMethod.getDeclaringClass().getTag("SourceFileTag");
    if (tag != null) {
      currentSourceFile = tag.toString();
    } else {
      currentSourceFile = "";
    }
  }
View Full Code Here

TOP

Related Classes of soot.tagkit.Tag

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.