In the standard Apache Isis Programming Model, corresponds to annotating the member with @Named.
6364656667686970717273
private static String nameFor(final ObjectAction noAction) { final String actionName = noAction.getName(); if (actionName != null) { return actionName; } final NamedFacet namedFacet = noAction.getFacet(NamedFacet.class); if (namedFacet != null) { return namedFacet.value(); } return "(no name)"; }