#108 Consistent package naming throughout the examples
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Base class for order processing filters.
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Concrete implementation of filter
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
*
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
import java.awt.BorderLayout;
|
||||
import java.awt.GridLayout;
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Concrete implementation of filter
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Concrete implementation of filter
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Filter interface Filters perform certain tasks prior or after execution of
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
|
||||
/**
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Filter Manager manages the filters and Filter Chain.
|
@@ -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
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Order class carries the order data.
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
/**
|
||||
* Concrete implementation of filter This checks for the order field
|
@@ -1,4 +1,4 @@
|
||||
package com.iluwatar.interceptingfilter;
|
||||
package com.iluwatar.intercepting.filter;
|
||||
|
||||
import java.awt.BorderLayout;
|
||||
import java.awt.Dimension;
|
@@ -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
|
Reference in New Issue
Block a user