コード例 #1
0
ファイル: GWikipage.java プロジェクト: hjimenez/kunagi
 @Override
 public void storeProperties(Map properties) {
   super.storeProperties(properties);
   properties.put("projectId", this.projectId);
   properties.put("name", this.name);
   properties.put("text", this.text);
 }
コード例 #2
0
ファイル: GQuality.java プロジェクト: evanleonard/kunagi
 @Override
 public void storeProperties(Map properties) {
   super.storeProperties(properties);
   properties.put("projectId", this.projectId);
   properties.put("number", this.number);
   properties.put("label", this.label);
   properties.put("description", this.description);
   properties.put("testDescription", this.testDescription);
 }