org.activiti.bpmn.model.BaseElement Maven / Gradle / Ivy
/* 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.activiti.bpmn.model;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
/**
* @author Tijs Rademakers
*/
public abstract class BaseElement implements HasExtensionAttributes {
protected String id;
protected int xmlRowNumber;
protected int xmlColumnNumber;
protected Map> extensionElements = new LinkedHashMap>();
/** extension attributes could be part of each element */
protected Map> attributes = new LinkedHashMap>();
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getXmlRowNumber() {
return xmlRowNumber;
}
public void setXmlRowNumber(int xmlRowNumber) {
this.xmlRowNumber = xmlRowNumber;
}
public int getXmlColumnNumber() {
return xmlColumnNumber;
}
public void setXmlColumnNumber(int xmlColumnNumber) {
this.xmlColumnNumber = xmlColumnNumber;
}
public Map> getExtensionElements() {
return extensionElements;
}
public void addExtensionElement(ExtensionElement extensionElement) {
if (extensionElement != null && StringUtils.isNotEmpty(extensionElement.getName())) {
List elementList = null;
if (this.extensionElements.containsKey(extensionElement.getName()) == false) {
elementList = new ArrayList();
this.extensionElements.put(extensionElement.getName(), elementList);
}
this.extensionElements.get(extensionElement.getName()).add(extensionElement);
}
}
public void setExtensionElements(Map> extensionElements) {
this.extensionElements = extensionElements;
}
@Override
public Map> getAttributes() {
return attributes;
}
@Override
public String getAttributeValue(String namespace, String name) {
List attributes = getAttributes().get(name);
if (attributes != null && !attributes.isEmpty()) {
for (ExtensionAttribute attribute : attributes) {
if ((namespace == null && attribute.getNamespace() == null) || namespace.equals(attribute.getNamespace()))
return attribute.getValue();
}
}
return null;
}
@Override
public void addAttribute(ExtensionAttribute attribute) {
if (attribute != null && StringUtils.isNotEmpty(attribute.getName())) {
List attributeList = null;
if (this.attributes.containsKey(attribute.getName()) == false) {
attributeList = new ArrayList();
this.attributes.put(attribute.getName(), attributeList);
}
this.attributes.get(attribute.getName()).add(attribute);
}
}
@Override
public void setAttributes(Map> attributes) {
this.attributes = attributes;
}
public void setValues(BaseElement otherElement) {
setId(otherElement.getId());
extensionElements = new LinkedHashMap>();
if (otherElement.getExtensionElements() != null && !otherElement.getExtensionElements().isEmpty()) {
for (String key : otherElement.getExtensionElements().keySet()) {
List otherElementList = otherElement.getExtensionElements().get(key);
if (otherElementList != null && !otherElementList.isEmpty()) {
List elementList = new ArrayList();
for (ExtensionElement extensionElement : otherElementList) {
elementList.add(extensionElement.clone());
}
extensionElements.put(key, elementList);
}
}
}
attributes = new LinkedHashMap>();
if (otherElement.getAttributes() != null && !otherElement.getAttributes().isEmpty()) {
for (String key : otherElement.getAttributes().keySet()) {
List otherAttributeList = otherElement.getAttributes().get(key);
if (otherAttributeList != null && !otherAttributeList.isEmpty()) {
List attributeList = new ArrayList();
for (ExtensionAttribute extensionAttribute : otherAttributeList) {
attributeList.add(extensionAttribute.clone());
}
attributes.put(key, attributeList);
}
}
}
}
public abstract BaseElement clone();
}