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

xmindjbehave.jbehave.meta.Bound Maven / Gradle / Ivy

Go to download

Plugin that manages JBehave stories storage in XMind mindmap file, which allows design jBehave tests right after the brainstorm

The newest version!
package xmindjbehave.jbehave.meta;

import sun.reflect.generics.reflectiveObjects.NotImplementedException;

/**
 * Created by Ilya Evlampiev on 22.02.15.
 */

public class Bound {
    Bound(char bound) {
        if ((bound == '[') || (bound == ']')) {
            included = true;
        } else {
            if ((bound == '(') || (bound == ')')) {
                included = false;
            } else {
                new NotImplementedException();
            }
            ;
        }

    }

    private boolean included;

    public boolean isIncluded() {
        return included;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy