/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.dynamic.data.mapping.model; /** * @author Marcellus Tavares */ public class DDMFormFieldType { public static final String CHECKBOX = "checkbox"; public static final String CHECKBOX_MULTIPLE = "checkbox_multiple"; public static final String COLOR = "ddm-color"; public static final String DATE = "ddm-date"; public static final String DECIMAL = "ddm-decimal"; public static final String DOCUMENT_LIBRARY = "ddm-documentlibrary"; public static final String FIELDSET = "fieldset"; public static final String GEOLOCATION = "ddm-geolocation"; public static final String IMAGE = "ddm-image"; public static final String INTEGER = "ddm-integer"; public static final String JOURNAL_ARTICLE = "ddm-journal-article"; public static final String LINK_TO_PAGE = "ddm-link-to-page"; public static final String NUMBER = "ddm-number"; public static final String NUMERIC = "numeric"; public static final String RADIO = "radio"; public static final String SELECT = "select"; public static final String SEPARATOR = "ddm-separator"; public static final String TEXT = "text"; public static final String TEXT_AREA = "textarea"; public static final String TEXT_HTML = "ddm-text-html"; }