fixed folder structure and added package

This commit is contained in:
Josh
2015-04-05 01:15:02 +08:00
parent 2d7e2d1b18
commit 57c7a4895c
11 changed files with 13 additions and 7 deletions
@@ -1,4 +1,4 @@
package com.iluwatar;
/** /**
* Concrete implementation of filter * Concrete implementation of filter
* This filter is responsible for checking/filtering the input in the address field, returns null if field is empty * This filter is responsible for checking/filtering the input in the address field, returns null if field is empty
@@ -1,4 +1,5 @@
import java.util.*; package com.iluwatar;
import java.util.*;
import javax.swing.*; import javax.swing.*;
import javax.swing.table.*; import javax.swing.table.*;
import java.awt.*; import java.awt.*;
@@ -32,7 +33,3 @@ public class App{
@@ -1,8 +1,10 @@
package com.iluwatar;
import java.util.*; import java.util.*;
import javax.swing.*; import javax.swing.*;
import javax.swing.table.*; import javax.swing.table.*;
import java.awt.*; import java.awt.*;
import java.awt.event.*; import java.awt.event.*;
/** /**
* The Client class is responsible for handling the input and running them through filters inside the filterManager * The Client class is responsible for handling the input and running them through filters inside the filterManager
* *
@@ -1,3 +1,4 @@
package com.iluwatar;
/** /**
* Concrete implementation of filter * Concrete implementation of filter
* This filter checks for the contact field in which it checks if the input consist of numbers and it also checks if the input follows the length constraint (11 digits) * This filter checks for the contact field in which it checks if the input consist of numbers and it also checks if the input follows the length constraint (11 digits)
@@ -1,3 +1,4 @@
package com.iluwatar;
/** /**
* Concrete implementation of filter * Concrete implementation of filter
* *
@@ -1,3 +1,4 @@
package com.iluwatar;
/** /**
* Filter interface * Filter interface
* Filters perform certain tasks prior or after execution of request by request handler. * Filters perform certain tasks prior or after execution of request by request handler.
@@ -1,3 +1,4 @@
package com.iluwatar;
import java.util.*; import java.util.*;
/** /**
* Filter Chain carries multiple filters and help to execute them in defined order on target. * Filter Chain carries multiple filters and help to execute them in defined order on target.
@@ -1,3 +1,4 @@
package com.iluwatar;
import java.util.*; import java.util.*;
import javax.swing.*; import javax.swing.*;
import javax.swing.table.*; import javax.swing.table.*;
@@ -1,4 +1,4 @@
package com.iluwatar;
/** /**
* Concrete implementation of filter * Concrete implementation of filter
* This filter checks if the input in the Name field is valid. (alphanumeric) * This filter checks if the input in the Name field is valid. (alphanumeric)
@@ -1,3 +1,4 @@
package com.iluwatar;
/** /**
* Concrete implementation of filter * Concrete implementation of filter
* This checks for the order field, returns null when order field is empty * This checks for the order field, returns null when order field is empty
@@ -1,3 +1,4 @@
package com.iluwatar;
import java.util.*; import java.util.*;
import javax.swing.*; import javax.swing.*;
import javax.swing.table.*; import javax.swing.table.*;