Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

At the moment, KWebS supports six different the following formats:

Code Block
themeEclipse
languagejava
/**
 * Calculating the layout of a graph with KWebS
 * 
 * @param serializedGraph the serial notation of the source graph
 * @param informat the format of the source graph
 * @param outformat the optional format of the result
 * @param options the optional layout options
 * 
 * @return the serial notation of the graph with calculated layout either
 *         in the format of the source graph or a format chosen by the user
 */
String graphLayout(
    String serializedGraph,          
    String informat,                 
    String outformat,               
    List<GraphLayoutOption> options 
);

...