org.hermit.android.core
Class AppUtils.Version

java.lang.Object
  extended by org.hermit.android.core.AppUtils.Version
Enclosing class:
AppUtils

public class AppUtils.Version
extends java.lang.Object

Information on an application version.


Field Summary
 java.lang.CharSequence appDesc
          Description either of the app or the version.
 java.lang.CharSequence appName
          Application's pretty name.
 int versionCode
          Version code of the app.
 java.lang.CharSequence versionName
          Version name of the app.
 
Constructor Summary
AppUtils.Version()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

appName

public java.lang.CharSequence appName
Application's pretty name. null if unknown.


versionCode

public int versionCode
Version code of the app. -1 if unknown.


versionName

public java.lang.CharSequence versionName
Version name of the app. null if unknown.


appDesc

public java.lang.CharSequence appDesc
Description either of the app or the version. null if unknown.

Constructor Detail

AppUtils.Version

public AppUtils.Version()