mirror of https://github.com/apache/poi.git
[bug-66306] make XSLFDiagramGroupShape public
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1904555 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2d5d60cb2d
commit
ce7c1c92da
|
@ -239,7 +239,7 @@ public class XSLFDiagram extends XSLFGraphicFrame {
|
||||||
* Diagrams store relationships to media in `drawing#.xml.rels`. These relationships are accessible using
|
* Diagrams store relationships to media in `drawing#.xml.rels`. These relationships are accessible using
|
||||||
* {@link #getRelationById(String)}.
|
* {@link #getRelationById(String)}.
|
||||||
*/
|
*/
|
||||||
static class XSLFDiagramGroupShape extends XSLFGroupShape {
|
public static class XSLFDiagramGroupShape extends XSLFGroupShape {
|
||||||
|
|
||||||
private XSLFDiagramDrawing diagramDrawing;
|
private XSLFDiagramDrawing diagramDrawing;
|
||||||
|
|
||||||
|
@ -255,7 +255,7 @@ public class XSLFDiagram extends XSLFGraphicFrame {
|
||||||
this.diagramDrawing = diagramDrawing;
|
this.diagramDrawing = diagramDrawing;
|
||||||
}
|
}
|
||||||
|
|
||||||
POIXMLDocumentPart getRelationById(String id) {
|
public POIXMLDocumentPart getRelationById(String id) {
|
||||||
return diagramDrawing.getRelationById(id);
|
return diagramDrawing.getRelationById(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue