안녕하세요.
책 본문내용에서 어려운 부분을 해석 하지 못하겠어요 ~ ㅠㅠ
번거롭지 않는다면 //해석을 부탁드려도 될까요??

class Example { 
  Example(Class<?> acls, String aTitle) {
   cls = acls;
   Title = cls.getSimpleName() + " : " + aTitle;
  }
  String Title;
  Class<?> cls;
 }
Example[ ][ ] arExample = {
  { // Layout
   new Example(TextViewTest.class, "텍스트 뷰"),
   new Example(ImageViewTest.class, "이미지 뷰"),
   }
 }
 
for (Example e : arExample[mPackage]) {
   arTitle.add(e.Title);
  }