/* * Copyright 2016 Red Hat, Inc. and/or its affiliates. * * 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.kie.workbench.common.stunner.bpmn.definition; import java.util.HashSet; import java.util.Set; import javax.validation.Valid; import org.jboss.errai.common.client.api.annotations.MapsTo; import org.jboss.errai.common.client.api.annotations.NonPortable; import org.kie.workbench.common.forms.adf.definitions.annotations.FormField; import org.kie.workbench.common.stunner.bpmn.definition.property.background.BackgroundSet; import org.kie.workbench.common.stunner.bpmn.definition.property.dimensions.CircleDimensionSet; import org.kie.workbench.common.stunner.bpmn.definition.property.font.FontSet; import org.kie.workbench.common.stunner.bpmn.definition.property.general.BPMNGeneralSet; import org.kie.workbench.common.stunner.core.definition.annotation.PropertySet; import org.kie.workbench.common.stunner.core.definition.annotation.definition.Category; import org.kie.workbench.common.stunner.core.definition.annotation.definition.Labels; import org.kie.workbench.common.stunner.core.definition.annotation.morph.MorphBase; import org.kie.workbench.common.stunner.core.definition.builder.Builder; @MorphBase(defaultType = ParallelGateway.class) public abstract class BaseGateway implements BPMNDefinition { @Category public static final transient String category = Categories.GATEWAYS; @PropertySet @FormField @Valid protected BPMNGeneralSet general; @PropertySet @Valid protected BackgroundSet backgroundSet; @PropertySet protected FontSet fontSet; @PropertySet protected CircleDimensionSet dimensionsSet; @Labels protected final Set<String> labels = new HashSet<String>() {{ add("all"); add("sequence_start"); add("sequence_end"); add("choreography_sequence_start"); add("choreography_sequence_end"); add("fromtoall"); add("GatewaysMorph"); add("cm_nop"); }}; @NonPortable static abstract class BaseGatewayBuilder<T extends BaseGateway> implements Builder<T> { public static final transient String COLOR = "#f2ea9e"; public static final transient String ICON_COLOR = "#ae8104"; public static final transient String BORDER_COLOR = "#000000"; public static final Double BORDER_SIZE = 1d; public static final Double RADIUS = 20d; } public BaseGateway() { } public BaseGateway(final @MapsTo("general") BPMNGeneralSet general, final @MapsTo("backgroundSet") BackgroundSet backgroundSet, final @MapsTo("fontSet") FontSet fontSet, final @MapsTo("dimensionsSet") CircleDimensionSet dimensionsSet) { this.general = general; this.backgroundSet = backgroundSet; this.fontSet = fontSet; this.dimensionsSet = dimensionsSet; } public String getCategory() { return category; } public Set<String> getLabels() { return labels; } public BPMNGeneralSet getGeneral() { return general; } public BackgroundSet getBackgroundSet() { return backgroundSet; } public FontSet getFontSet() { return fontSet; } public void setGeneral(final BPMNGeneralSet general) { this.general = general; } public void setBackgroundSet(final BackgroundSet backgroundSet) { this.backgroundSet = backgroundSet; } public void setFontSet(final FontSet fontSet) { this.fontSet = fontSet; } public CircleDimensionSet getDimensionsSet() { return dimensionsSet; } public void setDimensionsSet(final CircleDimensionSet dimensionsSet) { this.dimensionsSet = dimensionsSet; } }