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

io.github.atmaramnaik.journey.coded.JourneyRegistryEntry Maven / Gradle / Ivy

The newest version!
package io.github.atmaramnaik.journey.coded;

public class JourneyRegistryEntry {
    String name;
    String enclosingClass;
    String methodName;

    public JourneyRegistryEntry(String name, String enclosingClass, String methodName) {
        this.name = name;
        this.enclosingClass = enclosingClass;
        this.methodName = methodName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy