Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasklist/IBackgroundSaveListener.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasklist/IBackgroundSaveListener.java20
1 files changed, 15 insertions, 5 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasklist/IBackgroundSaveListener.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasklist/IBackgroundSaveListener.java
index 6049075ea..510bbec91 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasklist/IBackgroundSaveListener.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasklist/IBackgroundSaveListener.java
@@ -1,16 +1,26 @@
+/*******************************************************************************
+ * Copyright (c) 2004 - 2006 University Of British Columbia and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * University Of British Columbia - initial API and implementation
+ *******************************************************************************/
package org.eclipse.mylar.internal.tasklist;
/**
- * Interface implemented by clients who are to be notified of
- * periodic requests to save data to disk.
+ * Interface implemented by clients who are to be notified of periodic requests
+ * to save data to disk.
*
* @author Wesley Coelho
*/
public interface IBackgroundSaveListener {
- /**
- * Called to notify the client of a PeriodicSaveTimer that
- * a save should be performed
+ /**
+ * Called to notify the client of a PeriodicSaveTimer that a save should be
+ * performed
*/
public void saveRequested();
}

Back to the top