├── .classpath ├── .gitignore ├── .project ├── README.md ├── jars ├── jetty-6.1.1.jar ├── jetty-util-6.1.1.jar ├── mxgraph-core.jar └── servlet-api.jar └── src └── com └── mxgraph └── examples └── DataServlet.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /classes/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/README.md -------------------------------------------------------------------------------- /jars/jetty-6.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/jars/jetty-6.1.1.jar -------------------------------------------------------------------------------- /jars/jetty-util-6.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/jars/jetty-util-6.1.1.jar -------------------------------------------------------------------------------- /jars/mxgraph-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/jars/mxgraph-core.jar -------------------------------------------------------------------------------- /jars/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/jars/servlet-api.jar -------------------------------------------------------------------------------- /src/com/mxgraph/examples/DataServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgraph/drawio-data-driven/HEAD/src/com/mxgraph/examples/DataServlet.java --------------------------------------------------------------------------------