org.bidib.wizard.mvc.stepcontrol.view.TurntableAspect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-client Show documentation
Show all versions of bidibwizard-client Show documentation
jBiDiB BiDiB Wizard Client Application POM
package org.bidib.wizard.mvc.stepcontrol.view;
public class TurntableAspect {
private final int row;
private final String label;
private final String tooltip;
public TurntableAspect(int row, String label, String tooltip) {
this.row = row;
this.label = label;
this.tooltip = tooltip;
}
public String getName() {
return label;
}
public String getTooltip() {
return tooltip;
}
/**
* @return the row
*/
public int getRow() {
return row;
}
}