/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.albite.book.view;
/**
*
* @author albus
*/
public interface StylingConstants {
public static final byte PLAIN = 0; //i.e. nothing is set
public static final byte ITALIC = 1;
public static final byte BOLD = 2;
public static final byte HEADING = 4;
public static final byte JUSTIFY = 0;
public static final byte LEFT = 1;
public static final byte CENTER = 2;
}