Skip to content
Snippets Groups Projects
Commit 204e6bf7 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

added ISEs

parent 779645d0
No related branches found
No related tags found
No related merge requests found
......@@ -34,88 +34,74 @@ public class InstantiationPipe implements IPipe {
return capacity;
}
@Override
public InputPort<?> getTargetPort() {
return this.target;
}
@Override
public boolean add(final Object element) {
// TODO Auto-generated method stub
return false;
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public boolean addNonBlocking(final Object element) {
// TODO Auto-generated method stub
return false;
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public boolean isEmpty() {
// TODO Auto-generated method stub
return false;
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public int size() {
// TODO Auto-generated method stub
return 0;
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public Object removeLast() {
// TODO Auto-generated method stub
return null;
}
@Override
public InputPort<?> getTargetPort() {
// TODO Auto-generated method stub
return this.target;
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public void sendSignal(final ISignal signal) {
// TODO Auto-generated method stub
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public <T> void connectPorts(final OutputPort<? extends T> sourcePort, final InputPort<T> targetPort) {
// TODO Auto-generated method stub
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public void reportNewElement() {
// TODO Auto-generated method stub
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public boolean isClosed() {
// TODO Auto-generated method stub
return false;
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public boolean hasMore() {
// TODO Auto-generated method stub
return false;
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public void waitForStartSignal() throws InterruptedException {
// TODO Auto-generated method stub
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public void waitForInitializingSignal() throws InterruptedException {
// TODO Auto-generated method stub
throw new IllegalStateException("This must not be called while executing the configuration");
}
@Override
public void close() {
// TODO Auto-generated method stub
throw new IllegalStateException("This must not be called while executing the configuration");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment