com.xrosstools.xunit.impl.ProcessorEnforcer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xunit Show documentation
Show all versions of xunit Show documentation
The runtime for xross unit model
The newest version!
package com.xrosstools.xunit.impl;
import com.xrosstools.xunit.Context;
import com.xrosstools.xunit.Processor;
import com.xrosstools.xunit.Unit;
public class ProcessorEnforcer implements Processor {
private Processor processor;
public ProcessorEnforcer(Unit unit) {
processor = (Processor)unit;
}
@Override
public void process(Context ctx) {
processor.process(ctx);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy