Guest User

Untitled

a guest
Feb 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. package jd.ide.eclipse;
  2.  
  3. import org.eclipse.jface.preference.IPreferenceStore;
  4. import org.eclipse.jface.preference.PreferenceStore;
  5.  
  6. public class JavaDecompilerPlugin
  7. {
  8. private static JavaDecompilerPlugin plugin;
  9.  
  10. // ERROR //
  11. public static JavaDecompilerPlugin getDefault()
  12. {
  13. // Byte code:
  14. // 0: getstatic 17 jd/ide/eclipse/JavaDecompilerPlugin:plugin Ljd/ide/eclipse/JavaDecompilerPlugin;
  15. // 3: ifnonnull +13 -> 16
  16. // 6: new 1 jd/ide/eclipse/JavaDecompilerPlugin
  17. // 9: dup
  18. // 10: invokespecial 19 jd/ide/eclipse/JavaDecompilerPlugin:<init> ()V
  19. // 13: putstatic 17 jd/ide/eclipse/JavaDecompilerPlugin:plugin Ljd/ide/eclipse/JavaDecompilerPlugin;
  20. // 16: getstatic 17 jd/ide/eclipse/JavaDecompilerPlugin:plugin Ljd/ide/eclipse/JavaDecompilerPlugin;
  21. // 19: areturn
  22. }
  23.  
  24. // ERROR //
  25. public IPreferenceStore getPreferenceStore()
  26. {
  27. // Byte code:
  28. // 0: new 23 org/eclipse/jface/preference/PreferenceStore
  29. // 3: dup
  30. // 4: invokespecial 25 org/eclipse/jface/preference/PreferenceStore:<init> ()V
  31. // 7: areturn
  32. }
  33.  
  34. // ERROR //
  35. protected void savePreferenceStore()
  36. {
  37. // Byte code:
  38. // 0: return
  39. }
  40.  
  41. // ERROR //
  42. public void savePluginPreferences()
  43. {
  44. // Byte code:
  45. // 0: return
  46. }
  47. }
Add Comment
Please, Sign In to add comment