wyvern.kernel.commands.filters
Class SortFilter

java.lang.Object
  extended bywyvern.kernel.commands.filters.SortFilter
All Implemented Interfaces:
CommandFilter

public class SortFilter
extends java.lang.Object
implements CommandFilter

Matches lines against a particular string, and discards lines that don't match the string.

Version:
1.0, Jun 13, 2003
Author:
Steve Yegge

Constructor Summary
SortFilter()
           
 
Method Summary
 java.util.ArrayList filter(java.util.ArrayList lines)
          Filters the lines.
static void main(java.lang.String[] args)
          Tests the filter.
 void parseArguments(java.lang.String verb, java.lang.String args)
          Parses the arguments to "sort".
 java.lang.String toString()
          Returns String representation of this filter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SortFilter

public SortFilter()
Method Detail

parseArguments

public void parseArguments(java.lang.String verb,
                           java.lang.String args)
Parses the arguments to "sort".

Specified by:
parseArguments in interface CommandFilter
Parameters:
verb - the command verb (e.g. "grep").
args - the argument string passed to the command, not including the command verb. Null if no arguments were passed to the filter.

filter

public java.util.ArrayList filter(java.util.ArrayList lines)
Filters the lines.

Specified by:
filter in interface CommandFilter
Parameters:
lines - the event output, broken into lines.
Returns:
a subset of the lines, matched against the argument string.

toString

public java.lang.String toString()
Returns String representation of this filter.


main

public static void main(java.lang.String[] args)
Tests the filter.