add method to return size of resPackage, (count of ResSpecs)

This commit is contained in:
Connor Tumbleson 2013-10-12 15:39:43 -05:00
parent 009867e885
commit 64bcb32d81

View File

@ -76,6 +76,10 @@ public class ResPackage {
return config;
}
public int getResSpecCount() {
return mResSpecs.size();
}
public ResConfig getOrCreateConfig(ResConfigFlags flags)
throws AndrolibException {
ResConfig config = mConfigs.get(flags);