Aditi16 / jss7

Automatically exported from code.google.com/p/jss7
0 stars 0 forks source link

Consider defining enums instead of int/boolean constants in interface #300

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In some cases jss7 still is C like...

/**
     * See Q.763 3.41 Broadband/narrowband interworking indicator : pass on
     */
    int _BII_PASS_ON = 0;

    /**
     * See Q.763 3.41 Broadband/narrowband interworking indicator : discard message
     */
    int _BII_DISCARD_MESSAGE = 1;

    /**
     * See Q.763 3.41 Broadband/narrowband interworking indicator : release call
     */
    int _BII_RELEASE_CALL = 2;

    /**
     * See Q.763 3.41 Broadband/narrowband interworking indicator : discard parameter
     */
    int _BII_DISCARD_PARAMETER = 3;

Above constants should be converted into enums.

Original issue reported on code.google.com by baran...@gmail.com on 30 Jun 2013 at 10:44