com.android.layoutlib.api
Interface IResourceValue

All Known Subinterfaces:
IDensityBasedResourceValue, IStyleResourceValue
All Known Implementing Classes:
ArrayResourceValue, AttrResourceValue, DeclareStyleableResourceValue, DensityBasedResourceValue, PluralsResourceValue, ResourceValue, StyleResourceValue, TextResourceValue

Deprecated. use ResourceValue.

@Deprecated
public interface IResourceValue

Represents an android resource with a name and a string value.


Method Summary
 java.lang.String getName()
          Deprecated. Returns the name of the resource, as defined in the XML.
 java.lang.String getType()
          Deprecated. Returns the type of the resource.
 java.lang.String getValue()
          Deprecated. Returns the value of the resource, as defined in the XML.
 boolean isFramework()
          Deprecated. Returns whether the resource is a framework resource (true) or a project resource (false).
 

Method Detail

getType

java.lang.String getType()
Deprecated. 
Returns the type of the resource. For instance "drawable", "color", etc...


getName

java.lang.String getName()
Deprecated. 
Returns the name of the resource, as defined in the XML.


getValue

java.lang.String getValue()
Deprecated. 
Returns the value of the resource, as defined in the XML. This can be null


isFramework

boolean isFramework()
Deprecated. 
Returns whether the resource is a framework resource (true) or a project resource (false).