Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/LogProgressMonitor.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/LogProgressMonitor.java154
1 files changed, 77 insertions, 77 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/LogProgressMonitor.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/LogProgressMonitor.java
index 429358b2328..4e35ba1d9c2 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/LogProgressMonitor.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/operation/LogProgressMonitor.java
@@ -1,77 +1,77 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.core.operation;
-
-import java.util.logging.Level;
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.osee.framework.core.internal.Activator;
-import org.eclipse.osee.framework.jdk.core.util.Strings;
-import org.eclipse.osee.framework.logging.OseeLog;
-
-/**
- * @author Roberto E. Escobar
- */
-public class LogProgressMonitor implements IProgressMonitor {
- private boolean isCancelled;
- private String taskName;
-
- public LogProgressMonitor() {
- this.isCancelled = false;
- this.taskName = "";
- }
-
- @Override
- public void beginTask(String name, int totalWork) {
- this.taskName = name;
- OseeLog.log(Activator.class, Level.INFO, String.format("Start: %s", taskName));
- }
-
- @Override
- public void done() {
- OseeLog.log(Activator.class, Level.INFO, String.format("Finish: %s", taskName));
- }
-
- @Override
- public void internalWorked(double work) {
-
- }
-
- @Override
- public boolean isCanceled() {
- return isCancelled;
- }
-
- @Override
- public void setCanceled(boolean value) {
- this.isCancelled = value;
- }
-
- @Override
- public void setTaskName(String name) {
- if (Strings.isValid(name)) {
- this.taskName = name;
- OseeLog.log(Activator.class, Level.INFO, name);
- }
- }
-
- @Override
- public void subTask(String name) {
- if (Strings.isValid(name)) {
- OseeLog.log(Activator.class, Level.FINER, name);
- }
- }
-
- @Override
- public void worked(int work) {
-
- }
-
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.core.operation;
+
+import java.util.logging.Level;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.osee.framework.core.internal.Activator;
+import org.eclipse.osee.framework.jdk.core.util.Strings;
+import org.eclipse.osee.framework.logging.OseeLog;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class LogProgressMonitor implements IProgressMonitor {
+ private boolean isCancelled;
+ private String taskName;
+
+ public LogProgressMonitor() {
+ this.isCancelled = false;
+ this.taskName = "";
+ }
+
+ @Override
+ public void beginTask(String name, int totalWork) {
+ this.taskName = name;
+ OseeLog.log(Activator.class, Level.INFO, String.format("Start: %s", taskName));
+ }
+
+ @Override
+ public void done() {
+ OseeLog.log(Activator.class, Level.INFO, String.format("Finish: %s", taskName));
+ }
+
+ @Override
+ public void internalWorked(double work) {
+
+ }
+
+ @Override
+ public boolean isCanceled() {
+ return isCancelled;
+ }
+
+ @Override
+ public void setCanceled(boolean value) {
+ this.isCancelled = value;
+ }
+
+ @Override
+ public void setTaskName(String name) {
+ if (Strings.isValid(name)) {
+ this.taskName = name;
+ OseeLog.log(Activator.class, Level.INFO, name);
+ }
+ }
+
+ @Override
+ public void subTask(String name) {
+ if (Strings.isValid(name)) {
+ OseeLog.log(Activator.class, Level.FINER, name);
+ }
+ }
+
+ @Override
+ public void worked(int work) {
+
+ }
+
+}

Back to the top