Add missing license headers to packetcable-driver concurrent
[packetcable.git] / packetcable-driver / src / main / java / org / pcmm / concurrent / IWorker.java
index 1a89605b4bab31b38bd4781350ed646e047c49ed..48f0dfd53c615d76e1e5c93b8d1a581ef431198c 100644 (file)
@@ -1,21 +1,29 @@
+/*
+ * Copyright (c) 2014 Cable Television Laboratories, Inc. 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
+ */
+
 package org.pcmm.concurrent;
 
 import java.util.concurrent.Callable;
 /**
- * 
+ *
  */
 public interface IWorker extends Runnable {
 
        /**
         * defines the task to be performed by this worker
-        * 
+        *
         * @param c
         */
        void task(Callable<?> c);
 
        /**
         * defines wait time before start working on the task
-        * 
+        *
         * @param t
         */
        void shouldWait(int t);