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

org.eclipse.fx.ui.controls.styledtext.StyledStringSegment Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
/*******************************************************************************
 * Copyright (c) 2014 BestSolution.at and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * 	Tom Schindl - initial API and implementation
 *******************************************************************************/
package org.eclipse.fx.ui.controls.styledtext;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

/**
 * Segment of a {@link StyledString}
 *
 * This is an experimental component provided as a preview we'll improve and
 * fix problems in up coming releases
 * 

* @noreference */ public class StyledStringSegment { private final String text; private final List styleClass; /** * Create a segment * * @param text * the text * @param styleClass * the style class */ public StyledStringSegment(String text, String... styleClass) { this.text = text; this.styleClass = Arrays.asList(styleClass); } /** * Create a segment * * @param text * the text * @param styleClass * the style class */ public StyledStringSegment(String text, List styleClass) { this.text = text; this.styleClass = Collections.unmodifiableList(new ArrayList<>(styleClass)); } /** * @return the text */ public String getText() { return this.text; } /** * @return the style class */ public List getStyleClass() { return this.styleClass; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy