ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/FilterThread.java
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/filter/FilterThread.java (file contents):
Revision 1.4 by pjm2, Thu Nov 23 09:14:29 2000 UTC vs.
Revision 1.5 by pjm2, Thu Nov 23 09:21:48 2000 UTC

# Line 7 | Line 7 | import uk.ac.ukc.iscream.filter.*;
7   public class FilterThread extends Thread{
8  
9      // Class constructor. Obtains the byte[] from a DatagramPacket.
10 <    public FilterThread(Filter parent, DatagramPacket packet){
10 >    public FilterThread(DatagramPacket packet, Filter parent, Logger logger){
11          this.parent = parent;
12          this.rawPacket = packet.getData();
13      }
14      
15      // Class constructor for passing XML Strings.
16 <    public FilterThread(Filter parent, String xml){
16 >    public FilterThread(String xml, Filter parent, Logger logger){
17          this.parent = parent;
18          this.rawPacket = xml.getBytes();
19      }
# Line 48 | Line 48 | public class FilterThread extends Thread{
48      
49      Filter parent;
50      byte[] rawPacket;
51 +    Logger logger;
52   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines