Adding method addFormSpecificData to EditConfiguration
This commit is contained in:
parent
2dd45126b4
commit
25c96774ca
1 changed files with 7 additions and 0 deletions
|
@ -895,6 +895,13 @@ public class EditConfigurationVTwo {
|
||||||
this.formSpecificData = formSpecificData;
|
this.formSpecificData = formSpecificData;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void addFormSpecificData( String key, Object value){
|
||||||
|
if( this.formSpecificData == null){
|
||||||
|
this.formSpecificData = new HashMap<String,Object>();
|
||||||
|
}
|
||||||
|
this.formSpecificData.put(key,value);
|
||||||
|
}
|
||||||
|
|
||||||
public HashMap<String, Object> getFormSpecificData() {
|
public HashMap<String, Object> getFormSpecificData() {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
return this.formSpecificData;
|
return this.formSpecificData;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue