Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. brando:kotlinsample brandon$ javap ServerResponse.class
  2. Compiled from "ServerResponse.kt"
  3. public final class com.brandonwever.android.kotlinsample.ServerResponse {
  4. public final java.lang.String getMessage();
  5. public final void setMessage(java.lang.String);
  6. public final int getStatusCode();
  7. public final void setStatusCode(int);
  8. public final java.lang.String getBody();
  9. public final void setBody(java.lang.String);
  10. public com.brandonwever.android.kotlinsample.ServerResponse(java.lang.String, int, java.lang.String);
  11. public com.brandonwever.android.kotlinsample.ServerResponse(java.lang.String, int, java.lang.String, int, kotlin.jvm.internal.DefaultConstructorMarker);
  12. public com.brandonwever.android.kotlinsample.ServerResponse(java.lang.String, int);
  13. public com.brandonwever.android.kotlinsample.ServerResponse(java.lang.String);
  14. public com.brandonwever.android.kotlinsample.ServerResponse();
  15. public final java.lang.String component1();
  16. public final int component2();
  17. public final java.lang.String component3();
  18. public final com.brandonwever.android.kotlinsample.ServerResponse copy(java.lang.String, int, java.lang.String);
  19. public static com.brandonwever.android.kotlinsample.ServerResponse copy$default(com.brandonwever.android.kotlinsample.ServerResponse, java.lang.String, int, java.lang.String, int, java.lang.Object);
  20. public java.lang.String toString();
  21. public int hashCode();
  22. public boolean equals(java.lang.Object);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement