public class GephiExport extends AbstractExportTool implements WandoraTool
| Modifier and Type | Class and Description |
|---|---|
private class |
GephiExport.AttributeColumn |
private class |
GephiExport.DataEdge |
private class |
GephiExport.DataNode |
private class |
GephiExport.sortByEdgeId |
private class |
GephiExport.sortByNodeId |
| Modifier and Type | Field and Description |
|---|---|
(package private) static int |
BUFFER |
private java.util.ArrayList<GephiExport.DataEdge> |
dataEdges |
private java.util.HashMap<java.lang.String,GephiExport.DataNode> |
dataNodes |
private int |
dummyCounter |
private java.util.ArrayList<GephiExport.AttributeColumn> |
edgeAttributes |
private int |
edgeCounter |
boolean |
EXPORT_ALL_ASSOCIATIONS |
boolean |
EXPORT_CLASSES |
boolean |
EXPORT_OCCURRENCES |
boolean |
EXPORT_SELECTION_INSTEAD_TOPIC_MAP |
(package private) WandoraToolLogger |
logger |
private java.util.ArrayList<GephiExport.AttributeColumn> |
nodeAttributes |
private int |
nodeCounter |
| Constructor and Description |
|---|
GephiExport() |
GephiExport(boolean exportSelection) |
| Modifier and Type | Method and Description |
|---|---|
private void |
collectNodesAndEdges(TopicMap topicMap) |
void |
configure(Wandora admin,
Options options,
java.lang.String prefix)
If the tool is configurable, shows an user interface to configure the tool.
|
private GephiExport.DataNode |
createDummyNode() |
protected GephiExport.AttributeColumn |
echoAttributeColumn(java.io.PrintWriter writer,
int index,
java.lang.String id,
java.lang.String title) |
protected GephiExport.AttributeColumn |
echoAttributeColumn(java.io.PrintWriter writer,
int index,
java.lang.String id,
java.lang.String title,
java.lang.String type,
java.lang.String origin) |
protected void |
echoAttributeModel(java.io.PrintWriter writer) |
protected void |
echoAttributeRows(java.io.PrintWriter writer) |
protected void |
echoDhns(java.io.PrintWriter writer) |
protected void |
echoEmptyTables(java.io.PrintWriter writer) |
protected void |
echoGraphData(java.io.PrintWriter writer) |
void |
execute(Wandora admin,
Context context)
Runs the tool.
|
void |
exportGephi(java.io.OutputStream out,
TopicMap topicMap,
java.lang.String graphName,
WandoraToolLogger logger) |
java.lang.String |
getDescription()
AdminToolManager views tool descriptions while user browses available
tools and build user customizable GUI elements such as Tools menu.
|
javax.swing.Icon |
getIcon()
All tools may have identifying graphic icon used within tool GUI elements.
|
java.lang.String |
getName()
Tools name represent the tool in UI unless the tool has been given
explicitly another GUI name.
|
boolean |
isConfigurable()
Whether this tool is configurable.
|
protected java.lang.String |
makeID(java.lang.String s) |
protected java.lang.String |
makeID(Topic t) |
protected java.lang.String |
makeString(java.lang.String s) |
protected java.lang.String |
makeString(Topic t) |
protected void |
print(java.io.PrintWriter writer,
java.lang.String str) |
protected void |
println(java.io.PrintWriter writer,
java.lang.String str) |
boolean |
requiresRefresh()
If any visible topic has been changed during tool execution GUI is
automatically refreshed.
|
getType, makeTopicMapWith, makeTopicMapWithaddUndoMarker, addUndoMarker, allowMultipleInvocations, clearAllThreads, clearThreads, clearThreads, clearToolLock, clearToolLock, clearToolLocks, execute, execute, forceStop, forceStop, getContext, getCurrentLogger, getDefaultLogger, getHistory, getLastLogger, getState, getThreads, getThreads, getToolMenuItem, getToolMenuItem, getTopicName, hlog, initialize, interruptAllThreads, interruptThreads, interruptThreads, isRunning, isRunning, lockLog, log, log, log, log, run, runInOwnThread, setContext, setDefaultLogger, setLogTitle, setProgress, setProgressMax, setState, setToolLogger, singleLog, singleLog, singleLog, solveContextTopicMap, solveNameForTopicMap, writeOptionsclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitexecute, execute, getContext, getToolMenuItem, getType, hlog, initialize, isRunning, log, log, log, log, setContext, setToolLogger, writeOptionsforceStop, getHistory, getState, lockLog, setLogTitle, setProgress, setProgressMax, setStatepublic boolean EXPORT_SELECTION_INSTEAD_TOPIC_MAP
public boolean EXPORT_CLASSES
public boolean EXPORT_OCCURRENCES
public boolean EXPORT_ALL_ASSOCIATIONS
private java.util.ArrayList<GephiExport.AttributeColumn> nodeAttributes
private java.util.ArrayList<GephiExport.AttributeColumn> edgeAttributes
private int edgeCounter
private int nodeCounter
private java.util.HashMap<java.lang.String,GephiExport.DataNode> dataNodes
private java.util.ArrayList<GephiExport.DataEdge> dataEdges
static final int BUFFER
WandoraToolLogger logger
private int dummyCounter
public GephiExport()
public GephiExport(boolean exportSelection)
public javax.swing.Icon getIcon()
AbstractWandoraToolgetIcon should return Icon object of
the tool.getIcon in interface WandoraToolgetIcon in class AbstractExportToolpublic boolean requiresRefresh()
AbstractWandoraToolIf any visible topic has been changed during tool execution GUI is automatically refreshed. If tool doesn't change topics but GUI still requires refresh, tool should override this method and return true.
For example tools that alter the GUI but change no topics should return true.
requiresRefresh in interface WandoraToolrequiresRefresh in class AbstractWandoraToolpublic boolean isConfigurable()
AbstractWandoraToolisConfigurable in interface WandoraToolisConfigurable in class AbstractWandoraToolpublic void configure(Wandora admin, Options options, java.lang.String prefix) throws TopicMapException
AbstractWandoraToolconfigure in interface WandoraToolconfigure in class AbstractWandoraToolTopicMapExceptionpublic void execute(Wandora admin, Context context)
WandoraToolexecute in interface WandoraToolpublic java.lang.String getName()
AbstractWandoraToolgetName in interface WandoraToolgetName in class AbstractWandoraToolpublic java.lang.String getDescription()
AbstractWandoraToolgetDescription in interface WandoraToolgetDescription in class AbstractWandoraToolpublic void exportGephi(java.io.OutputStream out,
TopicMap topicMap,
java.lang.String graphName,
WandoraToolLogger logger)
throws TopicMapException
TopicMapExceptionprivate void collectNodesAndEdges(TopicMap topicMap) throws TopicMapException
TopicMapExceptionprivate GephiExport.DataNode createDummyNode()
protected void echoAttributeRows(java.io.PrintWriter writer)
protected void echoAttributeModel(java.io.PrintWriter writer)
protected GephiExport.AttributeColumn echoAttributeColumn(java.io.PrintWriter writer, int index, java.lang.String id, java.lang.String title, java.lang.String type, java.lang.String origin)
protected GephiExport.AttributeColumn echoAttributeColumn(java.io.PrintWriter writer, int index, java.lang.String id, java.lang.String title)
protected void echoGraphData(java.io.PrintWriter writer)
protected void echoEmptyTables(java.io.PrintWriter writer)
protected void echoDhns(java.io.PrintWriter writer)
protected java.lang.String makeID(Topic t) throws TopicMapException
TopicMapExceptionprotected java.lang.String makeID(java.lang.String s)
protected java.lang.String makeString(java.lang.String s)
protected java.lang.String makeString(Topic t) throws TopicMapException
TopicMapExceptionprotected void print(java.io.PrintWriter writer,
java.lang.String str)
protected void println(java.io.PrintWriter writer,
java.lang.String str)
Copyright 2004-2015 Wandora Team