• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2010 The Android Open Source Project
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.android.ide.common.resources.configuration;
18 
19 import com.android.resources.NavigationState;
20 import com.android.resources.ResourceEnum;
21 
22 /**
23  * Resource Qualifier for navigation state.
24  */
25 public final class NavigationStateQualifier extends EnumBasedResourceQualifier {
26 
27     public static final String NAME = "Navigation State";
28 
29     private NavigationState mValue = null;
30 
NavigationStateQualifier()31     public NavigationStateQualifier() {
32         // pass
33     }
34 
NavigationStateQualifier(NavigationState value)35     public NavigationStateQualifier(NavigationState value) {
36         mValue = value;
37     }
38 
getValue()39     public NavigationState getValue() {
40         return mValue;
41     }
42 
43     @Override
getEnumValue()44     ResourceEnum getEnumValue() {
45         return mValue;
46     }
47 
48     @Override
getName()49     public String getName() {
50         return NAME;
51     }
52 
53     @Override
getShortName()54     public String getShortName() {
55         return NAME;
56     }
57 
58     @Override
since()59     public int since() {
60         return 1;
61     }
62 
63     @Override
checkAndSet(String value, FolderConfiguration config)64     public boolean checkAndSet(String value, FolderConfiguration config) {
65         NavigationState state = NavigationState.getEnum(value);
66         if (state != null) {
67             NavigationStateQualifier qualifier = new NavigationStateQualifier();
68             qualifier.mValue = state;
69             config.setNavigationStateQualifier(qualifier);
70             return true;
71         }
72 
73         return false;
74     }
75 }
76