diff options
author | Karen Lease <klease@apache.org> | 2002-04-28 21:28:02 +0000 |
---|---|---|
committer | Karen Lease <klease@apache.org> | 2002-04-28 21:28:02 +0000 |
commit | 0b8f96f941357fb49da8eca12e60164b77e4db47 (patch) | |
tree | 93a76746329d5c8fc0cdc7515bacd17815293146 /src/org/apache/fop/traits/BlockProps.java | |
parent | c87691055385415d1c3c5a13a0b483df58856ac9 (diff) | |
download | xmlgraphics-fop-0b8f96f941357fb49da8eca12e60164b77e4db47.tar.gz xmlgraphics-fop-0b8f96f941357fb49da8eca12e60164b77e4db47.zip |
PR:
Obtained from:
Submitted by:
Reviewed by:
Add BreakPossibility style LayoutManager code as an alternative to
Keiron's "direct area creation" method. Not currently enabled: to do
so, one must make 2 changes in the source.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194758 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/traits/BlockProps.java')
-rwxr-xr-x | src/org/apache/fop/traits/BlockProps.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/org/apache/fop/traits/BlockProps.java b/src/org/apache/fop/traits/BlockProps.java new file mode 100755 index 000000000..56996c953 --- /dev/null +++ b/src/org/apache/fop/traits/BlockProps.java @@ -0,0 +1,25 @@ +/* + * $Id$ + * Copyright (C) 2002 The Apache Software Foundation. All rights reserved. + * For details on use and redistribution please refer to the + * LICENSE file included with these sources. + */ + +package org.apache.fop.traits; + +import org.apache.fop.datatypes.Length; + +/** + * Store all block-level layout properties on an FO. + * Public "structure" allows direct member access. + */ +public class BlockProps { + public int firstIndent; // text-indent + public int lastIndent; // last-line-indent + public int textAlign; + public int textAlignLast; + public int lineStackType; // line-stacking-strategy (enum) + + public BlockProps() {} + +} |