net.nokok.draft.AtNamed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of draft Show documentation
Show all versions of draft Show documentation
Implementation of JSR-330
package net.nokok.draft;
import javax.inject.Named;
public interface AtNamed {
public static Named from(String name) {
return new AtNamedImpl(name);
}
}