View Javadoc
1   package io.guixer.tools;
2   
3   import static com.google.common.base.Preconditions.checkNotNull;
4   
5   import io.guixer.lang.Step;
6   
7   final class InlineStep implements Step {
8   
9   	public final String name;
10  	public final GuixerConsumer consumer;
11  
12  	public InlineStep(
13  		final String name,
14  		final GuixerConsumer consumer
15  	) {
16  
17  		this.name = checkNotNull(name, "name");
18  		this.consumer = checkNotNull(consumer, "consumer");
19  	}
20  }