Class LocalFormatter

java.lang.Object
org.jf.baksmali.Adaptors.Debug.LocalFormatter

public class LocalFormatter extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    writeLocal(BaksmaliWriter writer, String name, String type, String signature)
    Writes out the given local info The written string will be something like: "localVar":Ljava/lang/String;, "SomeSignature" "localVar":Ljava/lang/String; "localVar":V, "SomeSignature" null:Ljava/lang/String;, "SomeSignature" null:V, "SomeSignature" One of name, type or signature must be non-null

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • LocalFormatter

      public LocalFormatter()
  • Method Details

    • writeLocal

      public static void writeLocal(@Nonnull BaksmaliWriter writer, @Nullable String name, @Nullable String type, @Nullable String signature) throws IOException
      Writes out the given local info The written string will be something like: "localVar":Ljava/lang/String;, "SomeSignature" "localVar":Ljava/lang/String; "localVar":V, "SomeSignature" null:Ljava/lang/String;, "SomeSignature" null:V, "SomeSignature" One of name, type or signature must be non-null
      Throws:
      IOException