All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenpepper.interpreter.AnInterpreter Maven / Gradle / Ivy

The newest version!
package com.greenpepper.interpreter;

import com.greenpepper.reflect.Fixture;
import com.greenpepper.reflect.PlainOldFixture;
import com.greenpepper.systemunderdevelopment.SystemUnderDevelopment;

/**
 * 

AnInterpreter class.

* * @author oaouattara * @version $Id: $Id */ public class AnInterpreter extends RuleForInterpreter { /** *

Constructor for AnInterpreter.

* * @param systemUnderDevelopment a {@link com.greenpepper.systemunderdevelopment.SystemUnderDevelopment} object. */ public AnInterpreter( SystemUnderDevelopment systemUnderDevelopment ) { this(new PlainOldFixture(new NullFixture())); } /** *

Constructor for AnInterpreter.

* * @param fixture a {@link com.greenpepper.reflect.Fixture} object. */ public AnInterpreter(Fixture fixture) { super(fixture); } public static class NullFixture { public String fixtureName() { return null; } public String fixtureParameters() { return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy