]> git.mxchange.org Git - pizzaservice-swing.git/commitdiff
updated jars
authorRoland Haeder <roland@mxchange.org>
Tue, 29 Sep 2015 13:31:45 +0000 (15:31 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 29 Sep 2015 13:31:45 +0000 (15:31 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore-swing.jar
lib/jcore.jar
src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java

index c7b85f8995148308fa920ea3825c5bc56acba81f..85375df589980ceb6580c2972aaaefc1cfda88b1 100644 (file)
Binary files a/lib/jcore-swing.jar and b/lib/jcore-swing.jar differ
index bff5c73b4f02f01a1d004c465d1c99a0d024e32c..2179b37e40284525a5cb25cce157f22bfc9b782e 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index c74ed35f0375eeea3b57ba73ff41e2109336aae3..a34807e3cde1f8e3211231f5c849eaef9e78fcb8 100644 (file)
@@ -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<Category> 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<Product> 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<Product> 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;
        }