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

com.habibsweb.commons.components.TextAlignment Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.habibsweb.commons.components;

/**
 *
 * @author David Hamilton
 */
public interface TextAlignment {

    /**
     * Align to the left
     */
    public static final int TEXT_LEFT = 0;
    /**
     * Align to the center
     */
    public static final int TEXT_CENTER = 1;
    /**
     * Align to the right
     */
    public static final int TEXT_RIGHT = 2;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy