1/*
2 * Licensed under the Apache License, Version 2.0 (the "License");
3 * you may not use this file except in compliance with the License.
4 * You may obtain a copy of the License at
5 *
6 *      http://www.apache.org/licenses/LICENSE-2.0
7 *
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and
12 * limitations under the License.
13 */
14
15package com.android.internal.telephony.cdma;
16
17public final class EriInfo {
18
19    public static final int ROAMING_INDICATOR_ON    = 0;
20    public static final int ROAMING_INDICATOR_OFF   = 1;
21    public static final int ROAMING_INDICATOR_FLASH = 2;
22
23    public static final int ROAMING_ICON_MODE_NORMAL    = 0;
24    public static final int ROAMING_ICON_MODE_FLASH     = 1;
25
26    public int mRoamingIndicator;
27    public int mIconIndex;
28    public int mIconMode;
29    public String mEriText;
30    public int mCallPromptId;
31    public int mAlertId;
32
33    public EriInfo (int roamingIndicator, int iconIndex, int iconMode, String eriText,
34            int callPromptId, int alertId) {
35
36        this.mRoamingIndicator = roamingIndicator;
37        this.mIconIndex = iconIndex;
38        this.mIconMode = iconMode;
39        this.mEriText = eriText;
40        this.mCallPromptId = callPromptId;
41        this.mAlertId = alertId;
42    }
43}
44