public void updateProperties(Map props) { projectId = (String) props.get("projectId"); number = (Integer) props.get("number"); label = (java.lang.String) props.get("label"); description = (java.lang.String) props.get("description"); testDescription = (java.lang.String) props.get("testDescription"); updateLocalModificationTime(); }
@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); }