コード例 #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;
 }
コード例 #2
0
ファイル: SafeProperties.java プロジェクト: BeckyLJH/Java
 public void putOrUpdate(PropertyEntry pe) {
   remove(pe.getKey());
   commentOrEntrys.add(pe);
 }
コード例 #3
0
 public void selectNoneProperties() {
   for (PropertyEntry e : propertyEntries) {
     e.selectEntry = false;
   }
 }
コード例 #4
0
 public void selectAllProperties() {
   for (PropertyEntry e : propertyEntries) {
     e.selectEntry = true;
   }
 }