![JAR search and dependency download from the Maven repository](/logo.png)
io.airlift.command.model.SuggesterMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of airline Show documentation
Show all versions of airline Show documentation
Airline is a Java annotation-based framework for parsing Git like command line structures.
The newest version!
package io.airlift.command.model;
import com.google.common.collect.ImmutableList;
import io.airlift.command.Accessor;
import io.airlift.command.Suggester;
import java.util.List;
public class SuggesterMetadata
{
private final Class extends Suggester> suggesterClass;
private final List metadataInjections;
public SuggesterMetadata(Class extends Suggester> suggesterClass, List metadataInjections)
{
this.suggesterClass = suggesterClass;
this.metadataInjections = ImmutableList.copyOf(metadataInjections);
}
public Class extends Suggester> getSuggesterClass()
{
return suggesterClass;
}
public List getMetadataInjections()
{
return metadataInjections;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy