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.

XDGFSection.java 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.xdgf.usermodel.section;
  16. import java.util.HashMap;
  17. import java.util.Map;
  18. import com.microsoft.schemas.office.visio.x2012.main.CellType;
  19. import com.microsoft.schemas.office.visio.x2012.main.SectionType;
  20. import org.apache.poi.util.Internal;
  21. import org.apache.poi.xdgf.usermodel.XDGFCell;
  22. import org.apache.poi.xdgf.usermodel.XDGFSheet;
  23. public abstract class XDGFSection {
  24. public static XDGFSection load(SectionType section, XDGFSheet containingSheet) {
  25. return XDGFSectionTypes.load(section, containingSheet);
  26. }
  27. protected SectionType _section;
  28. protected XDGFSheet _containingSheet;
  29. protected Map<String, XDGFCell> _cells = new HashMap<>();
  30. protected XDGFSection(SectionType section, XDGFSheet containingSheet) {
  31. _section = section;
  32. _containingSheet = containingSheet;
  33. // only store cells in the base, not rows -- because rows are handled
  34. // specially for geometry sections
  35. for (CellType cell: section.getCellArray()) {
  36. _cells.put(cell.getN(), new XDGFCell(cell));
  37. }
  38. }
  39. @Internal
  40. public SectionType getXmlObject() {
  41. return _section;
  42. }
  43. @Override
  44. public String toString() {
  45. return "<Section type=" + _section.getN() + " from " + _containingSheet + ">";
  46. }
  47. public abstract void setupMaster(XDGFSection section);
  48. }