Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
7d705afc
Commit
7d705afc
authored
Feb 17, 2014
by
gmessner
Browse files
Changed method names so that they are prefixed with "on".
parent
be42ba11
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/messners/gitlab/api/event/WebHookListener.java
View file @
7d705afc
...
@@ -14,7 +14,7 @@ public interface WebHookListener extends java.util.EventListener {
...
@@ -14,7 +14,7 @@ public interface WebHookListener extends java.util.EventListener {
*
*
* @param event the EventObject instance containing info on the issue
* @param event the EventObject instance containing info on the issue
*/
*/
public
void
i
ssue
(
EventObject
event
);
public
void
onI
ssue
(
EventObject
event
);
/**.
/**.
...
@@ -22,7 +22,7 @@ public interface WebHookListener extends java.util.EventListener {
...
@@ -22,7 +22,7 @@ public interface WebHookListener extends java.util.EventListener {
*
*
* @param event the EventObject instance containing info on the merge request
* @param event the EventObject instance containing info on the merge request
*/
*/
public
void
m
ergeRequest
(
EventObject
event
);
public
void
onM
ergeRequest
(
EventObject
event
);
/**
/**
...
@@ -30,9 +30,7 @@ public interface WebHookListener extends java.util.EventListener {
...
@@ -30,9 +30,7 @@ public interface WebHookListener extends java.util.EventListener {
*
*
* @param pushEvent the PushEvent instance
* @param pushEvent the PushEvent instance
*/
*/
public
void
push
(
PushEvent
pushEvent
);
public
void
onPush
(
PushEvent
pushEvent
);
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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