/* * Copyright 2011 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jbpm.formapi.shared.api.items; import java.util.Map; import org.jbpm.formapi.shared.api.FormItemRepresentation; import org.jbpm.formapi.shared.form.FormEncodingException; import com.gwtent.reflection.client.Reflectable; @Reflectable public class RadioButtonRepresentation extends FormItemRepresentation { private String name; private String id; private String value; private Boolean selected = Boolean.FALSE; public RadioButtonRepresentation() { super("radioButton"); } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public Boolean getSelected() { return selected; } public void setSelected(Boolean selected) { this.selected = selected; } @Override public Map<String, Object> getDataMap() { Map<String, Object> data = super.getDataMap(); data.put("name", this.name); data.put("id", this.id); data.put("value", this.value); data.put("selected", this.selected); return data; } @Override public void setDataMap(Map<String, Object> data) throws FormEncodingException { super.setDataMap(data); this.name = (String) data.get("name"); this.id = (String) data.get("id"); this.value = (String) data.get("value"); this.selected = (Boolean) data.get("selected"); } @Override public boolean equals(Object obj) { if (!super.equals(obj)) return false; if (!(obj instanceof RadioButtonRepresentation)) return false; RadioButtonRepresentation other = (RadioButtonRepresentation) obj; boolean equals = (this.name == null && other.name == null) || (this.name != null && this.name.equals(other.name)); if (!equals) return equals; equals = (this.id == null && other.id == null) || (this.id != null && this.id.equals(other.id)); if (!equals) return equals; equals = (this.value == null && other.value == null) || (this.value != null && this.value.equals(other.value)); if (!equals) return equals; equals = (this.selected == null && other.selected == null) || (this.selected != null && this.selected.equals(other.selected)); return equals; } @Override public int hashCode() { int result = super.hashCode(); int aux = this.name == null ? 0 : this.name.hashCode(); result = 37 * result + aux; aux = this.id == null ? 0 : this.id.hashCode(); result = 37 * result + aux; aux = this.value == null ? 0 : this.value.hashCode(); result = 37 * result + aux; aux = this.selected == null ? 0 : this.selected.hashCode(); result = 37 * result + aux; return result; } }