Home | History | Annotate | Download | only in res
      1 package org.robolectric.res;
      2 
      3 public class EmptyStyle implements Style {
      4   @Override
      5   public AttributeResource getAttrValue(ResName resName) {
      6     return null;
      7   }
      8 
      9   @Override
     10   public String toString() {
     11     return "Empty Style";
     12   }
     13 }
     14