Skip to content
Snippets Groups Projects
Commit 32b0e871 authored by Christian Wulf's avatar Christian Wulf
Browse files

updated javadoc

parent 80e7c4fc
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ import teetime.framework.OutputPort;
import teetime.framework.signal.ISignal;
/**
* Represents an interface, which should be adapted by all implementations of pipes.
* Represents a pipe that connects an output port with an input port.
*/
public interface IPipe {
......@@ -14,14 +14,14 @@ public interface IPipe {
*
* @param element
* Element which will be added
* @return True if the element could be added, false otherwise
* @return <code>true</code> if the element could be added, false otherwise
*/
boolean add(Object element);
/**
* Checks whether the pipe is empty or not.
*
* @return True if the pipe is empty, false otherwise.
* @return <code>true</code> if the pipe is empty, false otherwise.
*/
boolean isEmpty();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment