Skip to content

Commit

Permalink
Update GUI name and help button
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoris committed Oct 18, 2019
1 parent 02ad51e commit d139425
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/com/uantwerp/algorithms/gui/SubgraphMiningGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public SubgraphMiningGUI() {
private void initialize() {
// Define window size
frame = new JFrame();
frame.setTitle("M(U)LES - enriched subgraph miner");
frame.setTitle("MILES");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

// Define menu bar and panes
Expand Down Expand Up @@ -313,7 +313,7 @@ public void actionPerformed(ActionEvent arg0) {
JMenuItem mntmHelpContents = new JMenuItem(new AbstractAction("Visit help page") {
public void actionPerformed(ActionEvent e) {
// Button pressed logic goes here
String url = new String("https://github.com/pmoris/subgraph-miner/blob/master/README.md");
String url = new String("https://github.com/pmoris/miles-subgraph-miner/blob/master/README.md");
try {
Desktop.getDesktop().browse(new URI(url));
} catch (Exception ex) {
Expand All @@ -330,7 +330,7 @@ public void actionPerformed(ActionEvent e) {
// Button pressed logic goes here

try {
JOptionPane.showMessageDialog(frame, "M(U)LES v1.0- Adrem Data Lab - 2019");
JOptionPane.showMessageDialog(frame, "MILES v1.0.1 - Adrem Data Lab - 2019");
} catch (Exception ex) {
ex.printStackTrace();
}
Expand Down

0 comments on commit d139425

Please sign in to comment.