예제 #1
0
 @Implementation
 public int[] getIntArray(int id) throws Resources.NotFoundException {
   int[] arrayValue = resourceLoader.getIntegerArrayValue(getResName(id), getQualifiers());
   if (arrayValue == null) throw new Resources.NotFoundException(notFound(id));
   return arrayValue;
 }