org.minimalj.frontend.impl.json.JsonFormContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minimalj Show documentation
Show all versions of minimalj Show documentation
A java framework aiming for a minimal programming style. Includes GUI and persistence layer.
package org.minimalj.frontend.impl.json;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.minimalj.frontend.Frontend.FormContent;
import org.minimalj.frontend.Frontend.IComponent;
public class JsonFormContent extends JsonComponent implements FormContent {
public static final String CAPTION = "caption";
public static final String VALIDATION_MESSAGE = "validationMessage";
public static final String SPAN = "span";
private final List>> rows = new ArrayList<>();
private final int columns;
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy