org.got5.tapestry5.jquery.utils.JQueryTabData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapestry5-jquery Show documentation
Show all versions of tapestry5-jquery Show documentation
Tapestry Components Library
package org.got5.tapestry5.jquery.utils;
/**
* @deprecated will be deleted to Tapestry5-jQuery 4.0.0
*/
public class JQueryTabData {
private String title;
private String blockName;
public JQueryTabData(String title, String blockName) {
super();
this.title = title;
this.blockName = blockName;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getBlockName() {
return blockName;
}
public void setBlockName(String blockName) {
this.blockName = blockName;
}
}