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

View File

@ -1,4 +1,4 @@
package com.iluwatar;
/**
* Concrete implementation of filter
* This filter is responsible for checking/filtering the input in the address field, returns null if field is empty

View File

@ -1,4 +1,5 @@
import java.util.*;
package com.iluwatar;
import java.util.*;
import javax.swing.*;
import javax.swing.table.*;
import java.awt.*;
@ -32,7 +33,3 @@ public class App{

View File

@ -1,8 +1,10 @@
package com.iluwatar;
import java.util.*;
import javax.swing.*;
import javax.swing.table.*;
import java.awt.*;
import java.awt.event.*;
/**
* The Client class is responsible for handling the input and running them through filters inside the filterManager
*

View File

@ -1,3 +1,4 @@
package com.iluwatar;
/**
* 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)

View File

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

View File

@ -1,3 +1,4 @@
package com.iluwatar;
/**
* Filter interface
* Filters perform certain tasks prior or after execution of request by request handler.

View File

@ -1,3 +1,4 @@
package com.iluwatar;
import java.util.*;
/**
* Filter Chain carries multiple filters and help to execute them in defined order on target.

View File

@ -1,3 +1,4 @@
package com.iluwatar;
import java.util.*;
import javax.swing.*;
import javax.swing.table.*;

View File

@ -1,4 +1,4 @@
package com.iluwatar;
/**
* Concrete implementation of filter
* This filter checks if the input in the Name field is valid. (alphanumeric)

View File

@ -1,3 +1,4 @@
package com.iluwatar;
/**
* Concrete implementation of filter
* This checks for the order field, returns null when order field is empty

View File

@ -1,3 +1,4 @@
package com.iluwatar;
import java.util.*;
import javax.swing.*;
import javax.swing.table.*;