From: Roland Haeder Date: Tue, 29 Sep 2015 13:31:45 +0000 (+0200) Subject: updated jars X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=badcfb43d96ee9b203e1a9ff6a1718dba52960fd;p=pizzaservice-swing.git updated jars Signed-off-by:Roland Häder --- diff --git a/lib/jcore-swing.jar b/lib/jcore-swing.jar index c7b85f8..85375df 100644 Binary files a/lib/jcore-swing.jar and b/lib/jcore-swing.jar differ diff --git a/lib/jcore.jar b/lib/jcore.jar index bff5c73..2179b37 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index c74ed35..a34807e 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -38,13 +38,13 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz */ public PizzaServiceApplication () { // Trace message - this.getLogger().trace("CALLED!"); //NOI18N + this.getLogger().logTrace("CALLED!"); //NOI18N } @Override public void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException { // Trace message - this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N + this.getLogger().logTrace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N // category must not be null if (null == category) { @@ -57,7 +57,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz Category parentCategory = category.getParentCategory(); // Debug message - this.getLogger().debug(MessageFormat.format("title={0},parentCategory={1}", title, parentCategory)); //NOI18N + this.getLogger().logDebug(MessageFormat.format("title={0},parentCategory={1}", title, parentCategory)); //NOI18N // Init variables for casting Integer id = 0; @@ -84,13 +84,13 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz throw new UnsupportedOperationException("Unfinished method."); // Trace message - //this.getLogger().trace("EXIT!"); //NOI18N + //this.getLogger().logTrace("EXIT!"); //NOI18N } @Override public void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException { // Trace message - this.getLogger().trace(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N + this.getLogger().logTrace(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N // product must not be null if (null == product) { @@ -105,7 +105,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz 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().logDebug(MessageFormat.format("title={0},price={1},id={2},available={3}", title, price, id, available)); //NOI18N // Check all fields if (null == title) { @@ -138,7 +138,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz throw new UnsupportedOperationException("Unfinished method."); // Trace message - //this.getLogger().trace("EXIT!"); //NOI18N + //this.getLogger().logTrace("EXIT!"); //NOI18N } @Override @@ -166,7 +166,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz @SuppressWarnings ("unchecked") public Iterator getAllCategoriesIterator () { // Trace message - this.getLogger().trace("CALLED!"); //NOI18N + this.getLogger().logTrace("CALLED!"); //NOI18N // Unfinished throw new UnsupportedOperationException("Unfinished method."); @@ -182,7 +182,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz @SuppressWarnings ("unchecked") public Iterator getAllProductsIterator () { // Trace message - this.getLogger().trace("CALLED!"); //NOI18N + this.getLogger().logTrace("CALLED!"); //NOI18N // Unfinished throw new UnsupportedOperationException("Unfinished method."); @@ -198,7 +198,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz @SuppressWarnings ("unchecked") public Iterator getAvailableProductsIterator () { // Trace message - this.getLogger().trace("CALLED!"); //NOI18N + this.getLogger().logTrace("CALLED!"); //NOI18N // Unfinished throw new UnsupportedOperationException("Unfinished method."); @@ -207,7 +207,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz @Override public void init () throws SQLException { // Trace message - this.getLogger().trace("CALLED!"); //NOI18N + this.getLogger().logTrace("CALLED!"); //NOI18N // Is the bundle initialized? if (!BaseFrameworkSystem.isBundledInitialized()) { @@ -217,7 +217,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz } // Trace message - this.getLogger().trace("EXIT!"); //NOI18N + this.getLogger().logTrace("EXIT!"); //NOI18N } /** @@ -228,7 +228,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz */ private boolean isCategoryTitleUsed (final String title) { // Trace message - this.getLogger().trace(MessageFormat.format("title={0} - CALLED!", title)); //NOI18N + this.getLogger().logTrace(MessageFormat.format("title={0} - CALLED!", title)); //NOI18N // Unfinished throw new UnsupportedOperationException("Unfinished method."); @@ -242,7 +242,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz */ private boolean isCategoryTitleUsed (final Category category) { // Trace message - this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N + this.getLogger().logTrace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N // Init title String title = category.getCategoryTitle(); @@ -263,7 +263,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz boolean isUsed = this.isCategoryTitleUsed(title); // Trace message - this.getLogger().trace(MessageFormat.format("isUsed={0} - EXIT!", isUsed)); //NOI18N + this.getLogger().logTrace(MessageFormat.format("isUsed={0} - EXIT!", isUsed)); //NOI18N // Return it return isUsed; @@ -277,7 +277,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz */ private boolean isProductTitleUsed (final Product product) { // Trace message - this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", product)); //NOI18N + this.getLogger().logTrace(MessageFormat.format("category={0} - CALLED!", product)); //NOI18N // Init title String title = product.getProductTitle(); @@ -299,7 +299,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz throw new UnsupportedOperationException("not finished yet."); // Trace message - //this.getLogger().trace(MessageFormat.format("isUsed={0} - EXIT!", isUsed)); //NOI18N + //this.getLogger().logTrace(MessageFormat.format("isUsed={0} - EXIT!", isUsed)); //NOI18N // Return it //return isUsed; }