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.

FFDataBase.java 1.0KB

123456789101112131415161718192021222324252627282930313233
  1. package org.apache.poi.hwpf.model;
  2. import org.apache.poi.hwpf.model.types.FFDataBaseAbstractType;
  3. import org.apache.poi.util.Internal;
  4. /**
  5. * The FFData structure specifies form field data for a text box, check box, or
  6. * drop-down list box.
  7. * <p>
  8. * Class and fields descriptions are quoted from [MS-DOC] -- v20121003 Word
  9. * (.doc) Binary File Format; Copyright (c) 2012 Microsoft Corporation; Release:
  10. * October 8, 2012
  11. * <p>
  12. * This class is internal. It content or properties may change without notice
  13. * due to changes in our knowledge of internal Microsoft Word binary structures.
  14. *
  15. * @author Sergey Vladimirov; according to [MS-DOC] -- v20121003 Word (.doc)
  16. * Binary File Format; Copyright (c) 2012 Microsoft Corporation;
  17. * Release: October 8, 2012
  18. */
  19. @Internal
  20. public class FFDataBase extends FFDataBaseAbstractType
  21. {
  22. public FFDataBase()
  23. {
  24. super();
  25. }
  26. public FFDataBase( byte[] std, int offset )
  27. {
  28. fillFields( std, offset );
  29. }
  30. }