actions.add(new AnchorAction(widgets, Anchor.TRAILING, true, "right + width", anchor));
actions.add(new AnchorAction(widgets, Anchor.BOTH, true, "left + right", anchor));
}
public void addAnchorActions_vertical(List<Object> actions, List<W> widgets) {
Anchor anchor = getAnchor(widgets, false);
actions.add(new AnchorAction(widgets, Anchor.NONE, false, "none", anchor));
actions.add(new AnchorAction(widgets, Anchor.LEADING, false, "top + height", anchor));
actions.add(new AnchorAction(widgets, Anchor.TRAILING, false, "bottom + height", anchor));
actions.add(new AnchorAction(widgets, Anchor.BOTH, false, "top + bottom", anchor));
}