#108 Consistent package naming throughout the examples

This commit is contained in:
Ilkka Seppala
2015-07-24 11:32:22 +03:00
parent af92d8dde5
commit 3d488ec15a
128 changed files with 963 additions and 873 deletions

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Base class for order processing filters.

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Concrete implementation of filter

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
*

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
import java.awt.BorderLayout;
import java.awt.GridLayout;

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Concrete implementation of filter

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Concrete implementation of filter

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Filter interface Filters perform certain tasks prior or after execution of

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Filter Manager manages the filters and Filter Chain.

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Concrete implementation of filter This filter checks if the input in the Name

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Order class carries the order data.

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
/**
* Concrete implementation of filter This checks for the order field

View File

@@ -1,4 +1,4 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
import java.awt.BorderLayout;
import java.awt.Dimension;

View File

@@ -1,7 +1,9 @@
package com.iluwatar.interceptingfilter;
package com.iluwatar.intercepting.filter;
import org.junit.Test;
import com.iluwatar.intercepting.filter.App;
public class AppTest {
@Test