JavaScript is disabled on your browser.
public class ActionHintBuilder
extends Object
Per-action placement builder for a document's detail-header actions
(
post /
unpost /
edit /
delete): show it as a
primary button, tuck it into the overflow (⋯) menu, or hide it entirely.
Obtained from EntityConfigBuilder.action(String) ; the terminal
methods return the parent so calls chain:
f.action("delete").inMenu()
.action("post").primary()
.action("unpost").hidden();
Method Summary
All Methods Instance Methods Concrete Methods
Hide this action from the UI entirely (it stays available via REST).
Tuck this action into the overflow (⋯) menu.
Show this action as a primary button in the detail header.
Methods inherited from class java.lang.Object
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
Method Details
primary
Show this action as a primary button in the detail header.
hidden
Hide this action from the UI entirely (it stays available via REST).