(value < 0.0));
}
// collect entity and tool tip information...
if (state.getInfo() != null) {
final EntityCollection entities = state.getEntityCollection();
if (entities != null) {
String tip = null;
final CategoryToolTipGenerator tipster = this
.getToolTipGenerator(row, column);
if (tipster != null) {
tip = tipster.generateToolTip(dataset, row, column);
}
String url = null;
if (this.getItemURLGenerator(row, column) != null) {
url = this.getItemURLGenerator(row, column).generateURL(
dataset, row, column);
}
final Region reg = new Region();
reg.add(bar);
final CategoryItemEntity entity = new CategoryItemEntity(reg,
tip, url, dataset, row, dataset.getColumnKey(column),
column);
entities.add(entity);
}
}
}