* @param axis
*/
public AbstractPanZoomControls(AbstractAxis axis) {
super();
this.axis = axis;
AxisVisibleOrientation orientation = axis.getVisibleOrientation();
toStart = makeButton(getIcon(orientation, true), this, getName(orientation, true));
toEnd = makeButton(getIcon(orientation, false), this, getName(orientation, false));
toStart.setVisible(true);
toEnd.setVisible(true);