├── .gitignore ├── LICENSE ├── README.rst ├── data ├── dolphins.gml ├── karate.gml ├── polbooks.gml └── style_shp.css ├── pom.xml ├── src-test └── org │ └── graphstream │ └── stream │ └── gephi │ ├── test │ ├── ExampleJSONReceiver.java │ ├── ExampleJSONSender.java │ ├── ExampleJSONStream.java │ └── TestJSONStream.java │ └── tutorial │ ├── GraphSender.java │ └── LinLogLayoutReceiver.java └── src └── org └── graphstream └── stream └── gephi ├── JSONEventConstants.java ├── JSONReceiver.java └── JSONSender.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/README.rst -------------------------------------------------------------------------------- /data/dolphins.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/data/dolphins.gml -------------------------------------------------------------------------------- /data/karate.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/data/karate.gml -------------------------------------------------------------------------------- /data/polbooks.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/data/polbooks.gml -------------------------------------------------------------------------------- /data/style_shp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/data/style_shp.css -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/pom.xml -------------------------------------------------------------------------------- /src-test/org/graphstream/stream/gephi/test/ExampleJSONReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src-test/org/graphstream/stream/gephi/test/ExampleJSONReceiver.java -------------------------------------------------------------------------------- /src-test/org/graphstream/stream/gephi/test/ExampleJSONSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src-test/org/graphstream/stream/gephi/test/ExampleJSONSender.java -------------------------------------------------------------------------------- /src-test/org/graphstream/stream/gephi/test/ExampleJSONStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src-test/org/graphstream/stream/gephi/test/ExampleJSONStream.java -------------------------------------------------------------------------------- /src-test/org/graphstream/stream/gephi/test/TestJSONStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src-test/org/graphstream/stream/gephi/test/TestJSONStream.java -------------------------------------------------------------------------------- /src-test/org/graphstream/stream/gephi/tutorial/GraphSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src-test/org/graphstream/stream/gephi/tutorial/GraphSender.java -------------------------------------------------------------------------------- /src-test/org/graphstream/stream/gephi/tutorial/LinLogLayoutReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src-test/org/graphstream/stream/gephi/tutorial/LinLogLayoutReceiver.java -------------------------------------------------------------------------------- /src/org/graphstream/stream/gephi/JSONEventConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src/org/graphstream/stream/gephi/JSONEventConstants.java -------------------------------------------------------------------------------- /src/org/graphstream/stream/gephi/JSONReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src/org/graphstream/stream/gephi/JSONReceiver.java -------------------------------------------------------------------------------- /src/org/graphstream/stream/gephi/JSONSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphstream/gs-gephi/HEAD/src/org/graphstream/stream/gephi/JSONSender.java --------------------------------------------------------------------------------