Small style things
[zxing.git] / android / src / com / google / zxing / client / android / result / WifiResultHandler.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android.result;
18
19 import android.app.Activity;
20
21 import com.google.zxing.client.android.R;
22 import com.google.zxing.client.result.ParsedResult;
23 import com.google.zxing.client.result.WifiParsedResult;
24
25 /**
26  * Handles address book entries.
27  *
28  * @author viki@google.com (Vikram Aggarwal)
29  */
30 public final class WifiResultHandler extends ResultHandler {
31
32   public WifiResultHandler(Activity activity, ParsedResult result) {
33     super(activity, result);
34   }
35
36   @Override
37   public int getButtonCount() {
38     // We just need one button, and that is to configure the wireless.  This could change in the future.
39     return 1;
40   }
41
42   @Override
43   public int getButtonText(int index) {
44     if (index == 0) {
45       return R.string.button_wifi;
46     }
47     throw new ArrayIndexOutOfBoundsException();
48   }
49
50   @Override
51   public void handleButtonPress(int index) {
52     // Get the underlying wifi config
53     WifiParsedResult wifiResult = (WifiParsedResult) getResult();
54     if (index == 0) {
55       wifiConnect(wifiResult);
56     }
57   }
58
59   // Display the name of the network and the network type to the user.
60   @Override
61   public CharSequence getDisplayContents() {
62     WifiParsedResult wifiResult = (WifiParsedResult) getResult();
63     StringBuffer contents = new StringBuffer();
64     ParsedResult.maybeAppend(wifiResult.getSsid(), contents);
65     ParsedResult.maybeAppend(wifiResult.getNetworkEncryption(), contents);
66     return contents.toString();
67   }
68
69   @Override
70   public int getDisplayTitle() {
71     return R.string.result_wifi;
72   }
73 }