Advertisement
manfromnn

RIL_QosDirection_ZTE_V790

Aug 15th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1. package com.android.internal.telephony;
  2.  
  3. class RIL_QosDirection
  4. {
  5.   public static final int RIL_QOS_RX = 1;
  6.   public static final int RIL_QOS_TX;
  7.  
  8.   public static String getName(int paramInt)
  9.   {
  10.     switch (paramInt)
  11.     {
  12.     default:
  13.       return null;
  14.     case 0:
  15.       return "RIL_QOS_TX";
  16.     }
  17.     return "RIL_QOS_RX";
  18.   }
  19. }
  20.  
  21.  
  22.  
  23. /* Location:           C:\AndroidMultitool\JD-gui\Stock\Framework\framework-dex2jar.jar
  24.  
  25.  * Qualified Name:     com.android.internal.telephony.RIL_QosDirection
  26.  
  27.  * JD-Core Version:    0.7.0.1
  28.  
  29.  */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement