Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmisinco2012-02-24 15:46:05 +0000
committerRyan D. Brooks2012-02-24 15:46:05 +0000
commit0a171cd067c7be73ac2bc6fad296dd4e6fac310d (patch)
tree5a25607d8cc166e797898cd5fe007b3a67c53151
parent8af40ddb64bb3516f39bbadb575d5b60ce4e9d26 (diff)
downloadorg.eclipse.osee-0a171cd067c7be73ac2bc6fad296dd4e6fac310d.tar.gz
org.eclipse.osee-0a171cd067c7be73ac2bc6fad296dd4e6fac310d.tar.xz
org.eclipse.osee-0a171cd067c7be73ac2bc6fad296dd4e6fac310d.zip
refactor: Add distribution statement to threading framework
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerExecutor.java16
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerFactory.java13
2 files changed, 25 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerExecutor.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerExecutor.java
index ccc7b3a7912..741831b1e5a 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerExecutor.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerExecutor.java
@@ -1,8 +1,13 @@
-/*
- * Created on Jan 4, 2012
+/*******************************************************************************
+ * Copyright (c) 2012 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
*
- * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
- */
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
package org.eclipse.osee.framework.core.threading;
import java.util.Collection;
@@ -15,6 +20,9 @@ import java.util.concurrent.Future;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.core.exception.OseeExceptions;
+/**
+ * @author John Misinco
+ */
public class ThreadedWorkerExecutor<T> {
private final int numberOfWorkers;
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerFactory.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerFactory.java
index 97e65969bc8..1563f3b0496 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerFactory.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/threading/ThreadedWorkerFactory.java
@@ -1,7 +1,20 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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.threading;
import java.util.concurrent.Callable;
+/**
+ * @author John Misinco
+ */
public interface ThreadedWorkerFactory<T> {
public int getWorkSize();

Back to the top