All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.teamapps.ux.component.template.gridtemplate.BadgeElement Maven / Gradle / Ivy

There is a newer version: 0.9.194
Show newest version
/*-
 * ========================LICENSE_START=================================
 * TeamApps
 * ---
 * Copyright (C) 2014 - 2023 TeamApps.org
 * ---
 * 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.
 * =========================LICENSE_END==================================
 */
package org.teamapps.ux.component.template.gridtemplate;

import org.teamapps.common.format.Color;
import org.teamapps.dto.AbstractUiTemplateElement;
import org.teamapps.dto.UiBadgeElement;
import org.teamapps.ux.component.format.FontStyle;
import org.teamapps.ux.component.format.HorizontalElementAlignment;
import org.teamapps.ux.component.format.Spacing;
import org.teamapps.ux.component.format.VerticalElementAlignment;

public class BadgeElement extends TextElement {

	private Color borderColor;

	public BadgeElement(String propertyName) {
		super(propertyName);
	}

	public BadgeElement(String propertyName, int row, int column) {
		super(propertyName, row, column);
	}

	public BadgeElement(String propertyName, int row, int column, int rowSpan, int colSpan) {
		super(propertyName, row, column, rowSpan, colSpan);
	}

	public BadgeElement(String propertyName, int row, int column, int rowSpan, int colSpan, HorizontalElementAlignment horizontalAlignment, VerticalElementAlignment verticalAlignment) {
		super(propertyName, row, column, rowSpan, colSpan, horizontalAlignment, verticalAlignment);
	}

	public BadgeElement setFontStyle(final FontStyle fontStyle) {
		this.fontStyle = fontStyle;
		return this;
	}

	public BadgeElement setLineHeight(final float lineHeight) {
		this.lineHeight = lineHeight;
		return this;
	}

	public BadgeElement setWrapLines(final boolean wrapLines) {
		this.wrapLines = wrapLines;
		return this;
	}

	public BadgeElement setPadding(final Spacing padding) {
		this.padding = padding;
		return this;
	}

	public BadgeElement setPropertyName(final String propertyName) {
		this.propertyName = propertyName;
		return this;
	}

	@Override
	public AbstractUiTemplateElement createUiTemplateElement() {
		UiBadgeElement uiBadgeElement = new UiBadgeElement(propertyName, row, column);
		mapAbstractTemplateElementAttributesToUiElement(uiBadgeElement);
		mapTextElementAttributesToUiElement(uiBadgeElement);
		uiBadgeElement.setBorderColor(borderColor != null ? borderColor.toHtmlColorString() : null);
		return uiBadgeElement;
	}

	public BadgeElement setRow(final int row) {
		this.row = row;
		return this;
	}

	public BadgeElement setColumn(final int column) {
		this.column = column;
		return this;
	}

	public BadgeElement setRowSpan(final int rowSpan) {
		this.rowSpan = rowSpan;
		return this;
	}

	public BadgeElement setColSpan(final int colSpan) {
		this.colSpan = colSpan;
		return this;
	}

	public BadgeElement setBorderColor(Color borderColor) {
		this.borderColor = borderColor;
		return this;
	}

	public Color getBorderColor() {
		return borderColor;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy