/*
 * Copyright 2020 MicroEJ Corp. All rights reserved.
 * This library is provided in source code for use, modification and test, subject to license terms.
 * Any modification of the source code will break MicroEJ Corp. warranties on the whole library.
 */
package ej.widget.container;

/**
 * Represents the orientation of a layout: either horizontal or vertical.
 */
public class LayoutOrientation {

	/** Horizontal orientation. */
	public static final boolean HORIZONTAL = true;

	/** Vertical orientation. */
	public static final boolean VERTICAL = false;

	// Prevents initialization.
	private LayoutOrientation() {
	}
}
