Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
ProofScriptParser
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
24
Issues
24
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sarah.grebing
ProofScriptParser
Commits
f1bf6cce
Commit
f1bf6cce
authored
Jul 11, 2017
by
Alexander Weigl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EventBuss
parent
80ff5047
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
src/main/java/edu/kit/formal/gui/controller/Events.java
src/main/java/edu/kit/formal/gui/controller/Events.java
+20
-0
No files found.
src/main/java/edu/kit/formal/gui/controller/Events.java
0 → 100644
View file @
f1bf6cce
package
edu.kit.formal.gui.controller
;
import
com.google.common.eventbus.EventBus
;
/**
* See http://codingjunkie.net/guava-eventbus/ for an introduction.
*
* Created by weigl on 7/11/17.
*/
public
class
Events
{
public
static
final
EventBus
GLOBAL_EVENT_BUS
=
new
EventBus
();
public
void
register
(
Object
object
)
{
GLOBAL_EVENT_BUS
.
register
(
object
);
}
public
void
unregister
(
Object
object
)
{
GLOBAL_EVENT_BUS
.
unregister
(
object
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment