Home | History | Annotate | Download | only in configuration
      1 /*
      2  * Copyright (C) 2009 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.ResourceEnum;
     20 import com.android.resources.ScreenSize;
     21 
     22 /**
     23  * Resource Qualifier for Screen Size. Size can be "small", "normal", "large" and "x-large"
     24  */
     25 public class ScreenSizeQualifier extends EnumBasedResourceQualifier {
     26 
     27     public static final String NAME = "Screen Size";
     28 
     29     private ScreenSize mValue = null;
     30 
     31 
     32     public ScreenSizeQualifier() {
     33     }
     34 
     35     public ScreenSizeQualifier(ScreenSize value) {
     36         mValue = value;
     37     }
     38 
     39     public ScreenSize 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 "Size";
     56     }
     57 
     58     @Override
     59     public boolean checkAndSet(String value, FolderConfiguration config) {
     60         ScreenSize size = ScreenSize.getEnum(value);
     61         if (size != null) {
     62             ScreenSizeQualifier qualifier = new ScreenSizeQualifier(size);
     63             config.setScreenSizeQualifier(qualifier);
     64             return true;
     65         }
     66 
     67         return false;
     68     }
     69 }
     70