Skip to content

Commit

Permalink
Edit Readme + Code
Browse files Browse the repository at this point in the history
  • Loading branch information
ChelloX committed May 6, 2020
1 parent 9cabc6d commit 52a36f8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Woped-Dependency-Analyzer
# Woped-Dependency-Analyzer
Visualisierung der Java-Dependencies von [WoPed](https://sourceforge.net/projects/woped/)

## How-To
Main-Method: src/main/java/woped_dependency_visualizer/App.java <br>
lediglich hier den Pfad zu dem WoPed-Verzeichnis (wie von Sourceforge gecloned) angeben und Programm starten
2 changes: 1 addition & 1 deletion src/main/java/woped_dependency_visualizer/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
public class App {
public static void main(String args[]) {
Visualizer v = new Visualizer();
v.visualize(""); //Woped-Dir
v.visualize("F:\\Daniel\\DHBW\\6.Semester\\Integrationsseminar\\001DEV\\woped-sf\\woped-code"); //Woped-Dir
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,21 @@ public class JGraphXAdapterDemo extends JApplet {
private static final Dimension DEFAULT_SIZE = new Dimension(530, 320);

private JGraphXAdapter<String, DefaultEdge> jgxAdapter;

ListenableGraph<String, DefaultEdge> graph;

public JGraphXAdapterDemo(ListenableGraph<String, DefaultEdge> graph) {
this.graph = graph;

JFrame frame = new JFrame();

frame.getContentPane().add(this);
frame.setTitle("JGraphT Adapter to JGraphX Demo");
frame.setTitle("Woped-Dependency-Visualizer");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setSize(500, 500);
frame.setVisible(true);

}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/woped_dependency_visualizer/Visualizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public Visualizer() {
foldersToIgnore.add(".idea");
foldersToIgnore.add(".git"); // <-- Wird warum auch immer als Directory angesehen und nicht als File

foldersToIgnore.add("WoPeD-ProjectFiles");
foldersToIgnore.add("WoPeD-ProjectFiles");
foldersToIgnore.add("WoPeD-TranslationEditor");
}

Expand Down

0 comments on commit 52a36f8

Please sign in to comment.