Example #1
0
 /*
  * (non-Javadoc)
  * @see org.xmeta.ThingManager#getThings()
  */
 public List<Thing> getThings(String categoryName) {
   Category category = getCategory(categoryName);
   if (category != null) {
     return category.getThings();
   } else {
     return null;
   }
 }
Example #2
0
 @Override
 public List<Thing> getThings(String categoryName, String descriptorPath) {
   Category category = getCategory(categoryName);
   if (category != null) {
     return category.getThings(descriptorPath);
   } else {
     return null;
   }
 }