Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. package com.android.server;
  2.  
  3. import java.util.List;
  4.  
  5. import android.content.res.*;
  6. import android.os.RemoteException;
  7.  
  8. public class ThemeHelperService extends IThemeHelperService.Stub {
  9.  
  10. @Override
  11. public void registerThemeHelper(IThemeHelper callbacks) throws RemoteException {
  12. // TODO Auto-generated method stub
  13.  
  14. }
  15.  
  16. @Override
  17. public void installPackage(List<String> paths) throws RemoteException {
  18. // TODO Auto-generated method stub
  19.  
  20. }
  21.  
  22. @Override
  23. public void uninstallPackage(List<String> packages, boolean restartUi) throws RemoteException {
  24. // TODO Auto-generated method stub
  25.  
  26. }
  27.  
  28. @Override
  29. public void restartSystemUI() throws RemoteException {
  30. // TODO Auto-generated method stub
  31.  
  32. }
  33.  
  34. @Override
  35. public void configurationShim(int firstDelay, int secondDelay) throws RemoteException {
  36. // TODO Auto-generated method stub
  37.  
  38. }
  39.  
  40. @Override
  41. public void applyBootanimation(String name) throws RemoteException {
  42. // TODO Auto-generated method stub
  43.  
  44. }
  45.  
  46. @Override
  47. public void applyFonts(String pid, String fileName) throws RemoteException {
  48. // TODO Auto-generated method stub
  49.  
  50. }
  51.  
  52. @Override
  53. public void applyAudio(String pid, String fileName) throws RemoteException {
  54. // TODO Auto-generated method stub
  55.  
  56. }
  57.  
  58. @Override
  59. public void enableOverlay(List<String> packages, boolean restartUi) throws RemoteException {
  60. // TODO Auto-generated method stub
  61.  
  62. }
  63.  
  64. @Override
  65. public void disableOverlay(List<String> packages, boolean restartUi) throws RemoteException {
  66. // TODO Auto-generated method stub
  67.  
  68. }
  69.  
  70. @Override
  71. public void changePriority(List<String> packages, boolean restartUi) throws RemoteException {
  72. // TODO Auto-generated method stub
  73.  
  74. }
  75.  
  76. @Override
  77. public void copy(String source, String destination) throws RemoteException {
  78. // TODO Auto-generated method stub
  79.  
  80. }
  81.  
  82. @Override
  83. public void move(String source, String destination) throws RemoteException {
  84. // TODO Auto-generated method stub
  85.  
  86. }
  87.  
  88. @Override
  89. public void mkdir(String destination) throws RemoteException {
  90. // TODO Auto-generated method stub
  91.  
  92. }
  93.  
  94. @Override
  95. public void deleteDirectory(String directory, boolean withParent) throws RemoteException {
  96. // TODO Auto-generated method stub
  97.  
  98. }
  99.  
  100. @Override
  101. public void applyProfile(List<String> enable, List<String> disable, String name,
  102. boolean restartUi) throws RemoteException {
  103. // TODO Auto-generated method stub
  104.  
  105. }
  106.  
  107. @Override
  108. public int getVersion() throws RemoteException {
  109. // TODO Auto-generated method stub
  110. return 0;
  111. }
  112.  
  113. @Override
  114. public boolean isAuthorised() throws RemoteException {
  115. // TODO Auto-generated method stub
  116. return false;
  117. }
  118.  
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement