Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/OseeServerThreadFactory.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/OseeServerThreadFactory.java112
1 files changed, 56 insertions, 56 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/OseeServerThreadFactory.java b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/OseeServerThreadFactory.java
index 152cf6e5581..d58950db395 100644
--- a/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/OseeServerThreadFactory.java
+++ b/plugins/org.eclipse.osee.framework.core.server/src/org/eclipse/osee/framework/core/server/internal/OseeServerThreadFactory.java
@@ -1,56 +1,56 @@
-/*******************************************************************************
- * 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.server.internal;
-
-import java.lang.ref.WeakReference;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.concurrent.CopyOnWriteArrayList;
-import java.util.concurrent.ThreadFactory;
-
-/**
- * @author Roberto E. Escobar
- */
-class OseeServerThreadFactory implements ThreadFactory {
-
- private final List<WeakReference<OseeServerThread>> threads;
- private final String threadName;
- private final int priority;
-
- public OseeServerThreadFactory(String threadName, int priority) {
- this.threadName = threadName;
- this.threads = new CopyOnWriteArrayList<WeakReference<OseeServerThread>>();
- this.priority = priority;
- }
-
- public OseeServerThreadFactory(String name) {
- this(name, Thread.NORM_PRIORITY);
- }
-
- @Override
- public Thread newThread(Runnable runnable) {
- OseeServerThread thread = new OseeServerThread(runnable, threadName + ":" + threads.size());
- thread.setPriority(priority);
- this.threads.add(new WeakReference<OseeServerThread>(thread));
- return thread;
- }
-
- List<OseeServerThread> getThreads() {
- List<OseeServerThread> toReturn = new ArrayList<OseeServerThread>();
- for (WeakReference<OseeServerThread> weak : threads) {
- OseeServerThread thread = weak.get();
- if (thread != null) {
- toReturn.add(thread);
- }
- }
- return toReturn;
- }
-}
+/*******************************************************************************
+ * 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.server.internal;
+
+import java.lang.ref.WeakReference;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.CopyOnWriteArrayList;
+import java.util.concurrent.ThreadFactory;
+
+/**
+ * @author Roberto E. Escobar
+ */
+class OseeServerThreadFactory implements ThreadFactory {
+
+ private final List<WeakReference<OseeServerThread>> threads;
+ private final String threadName;
+ private final int priority;
+
+ public OseeServerThreadFactory(String threadName, int priority) {
+ this.threadName = threadName;
+ this.threads = new CopyOnWriteArrayList<WeakReference<OseeServerThread>>();
+ this.priority = priority;
+ }
+
+ public OseeServerThreadFactory(String name) {
+ this(name, Thread.NORM_PRIORITY);
+ }
+
+ @Override
+ public Thread newThread(Runnable runnable) {
+ OseeServerThread thread = new OseeServerThread(runnable, threadName + ":" + threads.size());
+ thread.setPriority(priority);
+ this.threads.add(new WeakReference<OseeServerThread>(thread));
+ return thread;
+ }
+
+ List<OseeServerThread> getThreads() {
+ List<OseeServerThread> toReturn = new ArrayList<OseeServerThread>();
+ for (WeakReference<OseeServerThread> weak : threads) {
+ OseeServerThread thread = weak.get();
+ if (thread != null) {
+ toReturn.add(thread);
+ }
+ }
+ return toReturn;
+ }
+}

Back to the top