コード例 #1
0
 public List<String> getElementNames() {
   List<String> sourceName = new ArrayList<String>();
   sourceName.add(parameter.getName());
   for (PropertyEntry propertyEntry : propertyEntries) {
     sourceName.add(propertyEntry.getName());
   }
   return sourceName;
 }