~krause/xabsleditor/master

« back to all changes in this revision

Viewing changes to src/de/naoth/xabsleditor/events/RefreshGraphEvent.java

  • Committer: GitHub
  • Author(s): Yigit Akcay
  • Date: 2018-05-18 15:41:26 UTC
  • mfrom: (185.1.26)
  • Revision ID: git-v1:4f4ec3a2838097c734c228cdb4b0c87881c2de50
Merge pull request #15 from BerlinUnited/feature/event_based_architecture

event based architecture

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package de.naoth.xabsleditor.events;
 
2
 
 
3
import de.naoth.xabsleditor.editorpanel.XEditorPanel;
 
4
import java.util.EventObject;
 
5
 
 
6
/**
 
7
 *
 
8
 * @author Philipp Strobel <philippstrobel@posteo.de>
 
9
 */
 
10
public class RefreshGraphEvent extends EventObject
 
11
{
 
12
    public RefreshGraphEvent(XEditorPanel source) {
 
13
        super(source);
 
14
    }
 
15
}