You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HyphenationProps.java 720B

1234567891011121314151617181920212223
  1. /* $Id$
  2. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  3. * For details on use and redistribution please refer to the
  4. * LICENSE file included with these sources.
  5. */
  6. package org.apache.fop.layout;
  7. /**
  8. * Store all hyphenation related properties on an FO.
  9. * Public "structure" allows direct member access.
  10. */
  11. public class HyphenationProps {
  12. public int hyphenate; // Enum true or false: store as boolean!
  13. public char hyphenationChar;
  14. public int hyphenationPushCharacterCount;
  15. public int hyphenationRemainCharacterCount;
  16. public String language; // Language code or enum "NONE"
  17. public String country; // Country code or enum "NONE"
  18. public HyphenationProps() {
  19. }
  20. }