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

org.springframework.yarn.support.console.TableHeader Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 the original author or authors.
 *
 * 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.
 */
package org.springframework.yarn.support.console;

/**
 * Defines table column headers used by {@link Table}.
 *
 * @see UiUtils
 *
 * @author Gunnar Hillert
 * @author Janne Valkealahti
 *
 */
public class TableHeader {

	private int maxWidth = -1;

	private int width = 0;

	private String name;

	/**
	 * Constructor that initializes the table header with the provided header name and the with of the table header.
	 *
	 * @param name name
	 * @param width width
	 */
	public TableHeader(String name, int width) {

		super();
		this.width = width;
		this.name = name;

	}

	/**
	 * Constructor that initializes the table header with the provided header name. The with of the table header is
	 * calculated and assigned based on the provided header name.
	 *
	 * @param name name
	 */
	public TableHeader(String name) {
		super();
		this.name = name;

		if (name == null) {
			this.width = 0;
		}
		else {
			this.width = name.length();
		}

	}

	public int getWidth() {
		return width;
	}

	public void setWidth(int width) {
		this.width = width;
	}

	/**
	 * Updated the width for this particular column, but only if the value of the passed-in width is higher than the
	 * value of the pre-existing width.
	 *
	 * @param width width
	 */
	public void updateWidth(int width) {
		if (this.width < width) {
			if (this.maxWidth > 0 && this.maxWidth < width) {
				this.width = this.maxWidth;
			}
			else {
				this.width = width;
			}
		}
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getMaxWidth() {
		return maxWidth;
	}

	/**
	 * Defaults to -1 indicating to ignore the property.
	 *
	 * @param maxWidth If negative or zero this property will be ignored.
	 */
	public void setMaxWidth(int maxWidth) {
		this.maxWidth = maxWidth;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy