Example usage for org.apache.poi.xdgf.usermodel XDGFPage getContent

List of usage examples for org.apache.poi.xdgf.usermodel XDGFPage getContent

Introduction

In this page you can find the example usage for org.apache.poi.xdgf.usermodel XDGFPage getContent.

Prototype

public XDGFPageContents getContent() 

Source Link

Usage

From source file:com.bbn.poi.xdgf.parsers.VisioPageParser.java

License:Apache License

public VisioPageParser(XDGFPage page, SemanticHelper helper, Graph graph) {
    this.graph = graph;
    this.helper = helper;

    pageId = page.getID();/*from  w w w. j av a 2s.  c om*/
    pageName = page.getName();
    pageContents = page.getContent();
}