Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

FFDataBase.java 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* ====================================================================
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. ==================================================================== */
  15. package org.apache.poi.hwpf.model;
  16. import org.apache.poi.hwpf.model.types.FFDataBaseAbstractType;
  17. import org.apache.poi.util.Internal;
  18. /**
  19. * The FFData structure specifies form field data for a text box, check box, or
  20. * drop-down list box.
  21. * <p>
  22. * Class and fields descriptions are quoted from [MS-DOC] -- v20121003 Word
  23. * (.doc) Binary File Format; Copyright (c) 2012 Microsoft Corporation; Release:
  24. * October 8, 2012
  25. * <p>
  26. * This class is internal. It content or properties may change without notice
  27. * due to changes in our knowledge of internal Microsoft Word binary structures.
  28. */
  29. @Internal
  30. public class FFDataBase extends FFDataBaseAbstractType
  31. {
  32. public FFDataBase()
  33. {
  34. super();
  35. }
  36. public FFDataBase( byte[] std, int offset )
  37. {
  38. fillFields( std, offset );
  39. }
  40. }