コード例 #1
0
 /*@Nullable*/ public Object getAttribute(String name) {
   if (name.equals(FeatureKeys.CONFIGURATION)) {
     return config;
   } else {
     if (config == null) {
       config = new Configuration();
     }
     return config.getConfigurationProperty(name);
   }
 }