List of usage examples for com.google.gwt.user.client.ui Hidden setID
public void setID(String id)
From source file:org.jbpm.form.builder.ng.model.client.form.items.HiddenFormItem.java
License:Apache License
private void populate(Hidden hidden) { if (this.id != null) { hidden.setID(id); }/* w ww . j a v a 2s . c o m*/ if (this.name != null && !"".equals(this.name)) { hidden.setName(name); } if (this.value != null) { hidden.setValue(value); } }