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.NightMode; 20 import com.android.resources.ResourceEnum; 21 22 /** 23 * Resource Qualifier for Navigation Method. 24 */ 25 public final class NightModeQualifier extends EnumBasedResourceQualifier { 26 27 public static final String NAME = "Night Mode"; 28 29 private NightMode mValue; 30 31 public NightModeQualifier() { 32 // pass 33 } 34 35 public NightModeQualifier(NightMode value) { 36 mValue = value; 37 } 38 39 public NightMode getValue() { 40 return mValue; 41 } 42 43 @Override 44 ResourceEnum getEnumValue() { 45 return mValue; 46 } 47 48 @Override 49 public String getName() { 50 return NAME; 51 } 52 53 @Override 54 public String getShortName() { 55 return "Night Mode"; 56 } 57 58 @Override 59 public boolean checkAndSet(String value, FolderConfiguration config) { 60 NightMode mode = NightMode.getEnum(value); 61 if (mode != null) { 62 NightModeQualifier qualifier = new NightModeQualifier(mode); 63 config.setNightModeQualifier(qualifier); 64 return true; 65 } 66 67 return false; 68 } 69 } 70