FreeWRL / FreeX3D 4.3.0
X3DFontStyleNode.java
1package org.web3d.x3d.sai;
2import java.awt.Font;
3
4public interface X3DFontStyleNode extends X3DNode {
5 public int PLAIN_STYLE = java.awt.Font.PLAIN;
6 public int ITALIC_STYLE = java.awt.Font.ITALIC;
7 public int BOLD_STYLE = java.awt.Font.BOLD;
8 public int BOLDITALIC_STYLE = java.awt.Font.BOLD + java.awt.Font.ITALIC;
9 public int BEGIN_JUSTIFY = 1;
10 public int END_JUSTIFY = 2;
11 public int MIDDLE_JUSTIFY = 3;
12 public int FIRST_JUSTIFY = 4;
13
14 public Font getFont();
15 public int getHorizontalJustification();
16 public int getVerticalJustification();
17 public float getSpacing();
18 public float getSize();
19 public boolean isTopToBottom();
20 public boolean isLeftToRight();
21}