io.github.atmaramnaik.journey.coded.JourneyRegistryEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of journey-coded Show documentation
Show all versions of journey-coded Show documentation
Coded Journey Helper Library
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;
}
}