Example usage for org.apache.poi.xdgf.usermodel XmlVisioDocument XmlVisioDocument

List of usage examples for org.apache.poi.xdgf.usermodel XmlVisioDocument XmlVisioDocument

Introduction

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

Prototype

public XmlVisioDocument(InputStream is) throws IOException 

Source Link

Usage

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

License:Apache License

public VisioParser(FileInputStream vsdxFile) throws IOException {
    xmlDoc = new XmlVisioDocument(vsdxFile);

    processPages();
}