com.netgrif.application.engine.pdf.generator.domain.PdfMultiChoiceField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.pdf.generator.domain;
import com.netgrif.application.engine.pdf.generator.config.PdfResource;
import com.netgrif.application.engine.petrinet.domain.DataGroup;
import com.netgrif.application.engine.petrinet.domain.dataset.FieldType;
import java.util.List;
public class PdfMultiChoiceField extends PdfSelectionField {
public PdfMultiChoiceField(String fieldId, DataGroup dataGroup, FieldType type, String label, List values, List choices, PdfResource resource) {
super(resource);
this.fieldId = fieldId;
this.dataGroup = dataGroup;
this.type = type;
this.label = label;
this.values = values;
this.choices = choices;
}
public PdfMultiChoiceField(String fieldId, String label, List values, List choices, FieldType type, int x, int bottomY, int width, int height, PdfResource resource) {
super(resource);
this.fieldId = fieldId;
this.label = label;
this.values = values;
this.choices = choices;
this.type = type;
this.x = x;
this.bottomY = bottomY;
this.width = width;
this.height = height;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy