}
// Get all fields
- String title = category.getTitle();
+ String title = category.getCategoryTitle();
Category parentCategory = category.getParentCategory();
// Debug message
}
// Get title, price and category id
- String title = product.getTitle();
- Float price = product.getPrice();
- Long id = product.getId();
- Boolean available = product.getAvailable();
+ String title = product.getProductTitle();
+ Float price = product.getProductPrice();
+ Long id = product.getProductId();
+ Boolean available = product.getProductAvailability();
// Debug message
this.getLogger().debug(MessageFormat.format("title={0},price={1},id={2},available={3}", title, price, id, available)); //NOI18N
this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N
// Init title
- String title = category.getTitle();
+ String title = category.getCategoryTitle();
// category must not be null and "title" must be found and non-empty
if (null == category) {
this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", product)); //NOI18N
// Init title
- String title = product.getTitle();
+ String title = product.getProductTitle();
// category must not be null and "title" must be found and non-empty
if (null == product) {