Skip to content

Commit 14c4038

Browse files
eclipse-mylyn-botruspl-afed
authored andcommitted
Perform clean code of mylyn.commons/org.eclipse.mylyn.commons.activity.ui
1 parent c7c0a4f commit 14c4038

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

mylyn.commons/org.eclipse.mylyn.commons.activity.ui/src/org/eclipse/mylyn/commons/activity/ui/ActivityUi.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/**
2828
* Entry point for registering listener to monitor user activity.
29-
*
29+
*
3030
* @author Steffen Pingel
3131
* @since 3.7
3232
*/
@@ -44,7 +44,7 @@ public class ActivityUi {
4444

4545
/**
4646
* Registers a user activity listener.
47-
*
47+
*
4848
* @since 3.7
4949
* @param listener
5050
* listener to add
@@ -55,7 +55,7 @@ public static void addUserAttentionListener(UserActivityListener listener) {
5555

5656
/**
5757
* Unregisters a user activity listener.
58-
*
58+
*
5959
* @since 3.7
6060
* @param listener
6161
* listener to remote

mylyn.commons/org.eclipse.mylyn.commons.activity.ui/src/org/eclipse/mylyn/commons/activity/ui/UserActivityListener.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@
1212

1313
/**
1414
* Notified of user activity and inactivity events.
15-
*
15+
*
1616
* @author Mik Kersten
1717
* @since 3.7
1818
*/
1919
public abstract class UserActivityListener {
2020

2121
/**
2222
* Invoked when the user becomes active.
23-
*
23+
*
2424
* @since 3.7
2525
*/
2626
public abstract void userAttentionGained();
2727

2828
/**
2929
* Invoked when the user becomes inactive.
30-
*
30+
*
3131
* @since 3.7
3232
*/
3333
public abstract void userAttentionLost();
3434

3535
/**
3636
* Invoked when the user activity is recorded over a period of time.
37-
*
37+
*
3838
* @param start
3939
* time in milliseconds when user activity started
4040
* @param end

mylyn.commons/org.eclipse.mylyn.commons.activity.ui/src/org/eclipse/mylyn/commons/activity/ui/spi/AbstractUserActivityMonitor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
/**
1414
* Extend to monitor periods of user activity and inactivity.
15-
*
15+
*
1616
* @author Mik Kersten
1717
* @author Rob Elves
1818
* @since 3.7
@@ -24,7 +24,7 @@ public abstract class AbstractUserActivityMonitor {
2424
/**
2525
* Returns the priority of the monitor. A lower priority means that the monitor is preferred over other monitors. The priority of the
2626
* default monitor is <code>0</code>.
27-
*
27+
*
2828
* @since 3.7
2929
*/
3030
public abstract int getPriority();

mylyn.commons/org.eclipse.mylyn.commons.activity.ui/src/org/eclipse/mylyn/internal/commons/activity/ui/MonitorUserActivityJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* A job that is scheduled periodically to check for user activity.
23-
*
23+
*
2424
* @author Robert Elves
2525
* @author Steffen Pingel
2626
*/

mylyn.commons/org.eclipse.mylyn.commons.activity.ui/src/org/eclipse/mylyn/internal/commons/activity/ui/UserActivityManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
/**
2929
* Monitors user activity and notifies listeners.
30-
*
30+
*
3131
* @author Steffen Pingel
3232
*/
3333
public class UserActivityManager implements IUserActivityManager {
@@ -175,7 +175,7 @@ private void fireInactive() {
175175

176176
/**
177177
* Invoked when activity is recorded.
178-
*
178+
*
179179
* @param start
180180
* time in milliseconds when user activity started
181181
* @param end

0 commit comments

Comments
 (0)