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

io.github.palexdev.materialfx.builders.base.LabeledBuilder Maven / Gradle / Ivy

There is a newer version: 11.17.0
Show newest version
/*
 * Copyright (C) 2022 Parisi Alessandro
 * This file is part of MaterialFX (https://github.com/palexdev/MaterialFX).
 *
 * MaterialFX 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 3 of the License, or
 * (at your option) any later version.
 *
 * MaterialFX 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.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with MaterialFX.  If not, see .
 */

package io.github.palexdev.materialfx.builders.base;

import javafx.geometry.Pos;
import javafx.scene.Node;
import javafx.scene.control.ContentDisplay;
import javafx.scene.control.Labeled;
import javafx.scene.control.OverrunStyle;
import javafx.scene.paint.Paint;
import javafx.scene.text.Font;
import javafx.scene.text.TextAlignment;

public class LabeledBuilder extends ControlBuilder {

	//================================================================================
	// Constructors
	//================================================================================
	public LabeledBuilder(L labeled) {
		super(labeled);
	}

	public static LabeledBuilder control(Labeled labeled) {
		return new LabeledBuilder<>(labeled);
	}

	//================================================================================
	// Delegate Methods
	//================================================================================

	public LabeledBuilder setText(String value) {
		node.setText(value);
		return this;
	}

	public LabeledBuilder setAlignment(Pos value) {
		node.setAlignment(value);
		return this;
	}

	public LabeledBuilder setTextAlignment(TextAlignment value) {
		node.setTextAlignment(value);
		return this;
	}

	public LabeledBuilder setTextOverrun(OverrunStyle value) {
		node.setTextOverrun(value);
		return this;
	}

	public LabeledBuilder setEllipsisString(String value) {
		node.setEllipsisString(value);
		return this;
	}

	public LabeledBuilder setWrapText(boolean value) {
		node.setWrapText(value);
		return this;
	}

	public LabeledBuilder setFont(Font value) {
		node.setFont(value);
		return this;
	}

	public LabeledBuilder setGraphic(Node value) {
		node.setGraphic(value);
		return this;
	}

	public LabeledBuilder setUnderline(boolean value) {
		node.setUnderline(value);
		return this;
	}

	public LabeledBuilder setLineSpacing(double value) {
		node.setLineSpacing(value);
		return this;
	}

	public LabeledBuilder setContentDisplay(ContentDisplay value) {
		node.setContentDisplay(value);
		return this;
	}

	public LabeledBuilder setGraphicTextGap(double value) {
		node.setGraphicTextGap(value);
		return this;
	}

	public LabeledBuilder setTextFill(Paint value) {
		node.setTextFill(value);
		return this;
	}

	public LabeledBuilder setMnemonicParsing(boolean value) {
		node.setMnemonicParsing(value);
		return this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy