|
Préférences
Moteurs de recherche
|
||||||||||||||||||||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
java.awt.font
|
Field Summary | |
---|---|
boolean |
growAbsorb
If true , this glyph absorbs all extra
space at this and lower priority levels when it grows. |
float |
growLeftLimit
The maximum amount by which the left side of this glyph can grow. |
int |
growPriority
The priority level of this glyph as it is growing. |
float |
growRightLimit
The maximum amount by which the right side of this glyph can grow. |
static int |
PRIORITY_INTERCHAR
The second lowest justification priority. |
static int |
PRIORITY_KASHIDA
The highest justification priority. |
static int |
PRIORITY_NONE
The lowest justification priority. |
static int |
PRIORITY_WHITESPACE
The second highest justification priority. |
boolean |
shrinkAbsorb
If true ,this glyph absorbs all remaining shrinkage at
this and lower priority levels as it shrinks. |
float |
shrinkLeftLimit
The maximum amount by which the left side of this glyph can shrink (a positive number). |
int |
shrinkPriority
The priority level of this glyph as it is shrinking. |
float |
shrinkRightLimit
The maximum amount by which the right side of this glyph can shrink (a positive number). |
float |
weight
The weight of this glyph. |
Constructor Summary | |
---|---|
GlyphJustificationInfo(float weight,
boolean growAbsorb,
int growPriority,
float growLeftLimit,
float growRightLimit,
boolean shrinkAbsorb,
int shrinkPriority,
float shrinkLeftLimit,
float shrinkRightLimit)
Constructs information about the justification properties of a glyph. |
Method Summary |
---|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int PRIORITY_KASHIDA
public static final int PRIORITY_WHITESPACE
public static final int PRIORITY_INTERCHAR
public static final int PRIORITY_NONE
public final float weight
public final int growPriority
public final boolean growAbsorb
true
, this glyph absorbs all extra
space at this and lower priority levels when it grows.
public final float growLeftLimit
public final float growRightLimit
public final int shrinkPriority
public final boolean shrinkAbsorb
true
,this glyph absorbs all remaining shrinkage at
this and lower priority levels as it shrinks.
public final float shrinkLeftLimit
public final float shrinkRightLimit
Constructor Detail |
---|
public GlyphJustificationInfo(float weight, boolean growAbsorb, int growPriority, float growLeftLimit, float growRightLimit, boolean shrinkAbsorb, int shrinkPriority, float shrinkLeftLimit, float shrinkRightLimit)
weight
- the weight of this glyph when allocating space. Must be non-negative.growAbsorb
- if true
this glyph absorbs
all extra space at this priority and lower priority levels when it
growsgrowPriority
- the priority level of this glyph when it
growsgrowLeftLimit
- the maximum amount by which the left side of this
glyph can grow. Must be non-negative.growRightLimit
- the maximum amount by which the right side of this
glyph can grow. Must be non-negative.shrinkAbsorb
- if true
, this glyph absorbs all
remaining shrinkage at this and lower priority levels when it
shrinksshrinkPriority
- the priority level of this glyph when
it shrinksshrinkLeftLimit
- the maximum amount by which the left side of this
glyph can shrink. Must be non-negative.shrinkRightLimit
- the maximum amount by which the right side
of this glyph can shrink. Must be non-negative.