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

com.technophobia.substeps.model.StepImplementation Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
/*
 *  Copyright Technophobia Ltd 2012
 *
 *   This file is part of Substeps.
 *
 *    Substeps is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU Lesser General Public License as published by
 *    the Free Software Foundation, either version 3 of the License, or
 *    (at your option) any later version.
 *
 *    Substeps is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU Lesser General Public License for more details.
 *
 *    You should have received a copy of the GNU Lesser General Public License
 *    along with Substeps.  If not, see .
 */
package com.technophobia.substeps.model;

import java.lang.reflect.Method;

/**
 * This class represents an annotated method which implements a step, ie @Step
 *
 * @author ian
 */
public class StepImplementation {
    /**
     * this is the pattern as defined in the step implementation
     */
    private final String value;
    private final Class implementedIn;
    private final Method method;

    private final String keyword;


    public StepImplementation(final Class loadedClass, final String keyword,
                              final String valueString, final Method m) {
        implementedIn = loadedClass;
        value = valueString;
        method = m;
        this.keyword = keyword;
    }


    public static StepImplementation parse(final String fullLine, final Class loadedClass,
                                           final Method m) {
        final int idx = fullLine.indexOf(' ');
        if (idx > 0) {
            final String key = fullLine.substring(0, idx);
            return new StepImplementation(loadedClass, key, fullLine, m);
        } else {
            final String key = fullLine;
            final String val = fullLine;
            return new StepImplementation(loadedClass, key, val, m);
        }
    }


    /**
     * @return the value
     */
    public String getValue() {
        return value;
    }


    /**
     * @return the implementedIn
     */
    public Class getImplementedIn() {
        return implementedIn;
    }


    /**
     * @return the method
     */
    public Method getMethod() {
        return method;
    }


    /**
     * @return the keyword
     */
    public String getKeyword() {
        return keyword;
    }


    public StepImplementation cloneWithKeyword(final String keyword) {
        return new StepImplementation(getImplementedIn(), keyword, getValue().replaceFirst(
                getKeyword(), keyword), getMethod());
    }


    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((method == null) ? 0 : method.hashCode());
        return result;
    }


    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final StepImplementation other = (StepImplementation) obj;
        if (method == null) {
            if (other.method != null) {
                return false;
            }
        } else if (!method.equals(other.method)) {
            return false;
        }
        return true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy