hi , 

i have a class called Event which is as follows:

public class Event {
private  String name;
private  File source;
private  Date timeStamp;
public static List<Event> listOfEvents;
 
public Event(String name, File source, Date timeStamp) {
this.name = name;
this.source = source;
this.timeStamp = timeStamp;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public File getSource() {
return source;
}
public void setSource(File source) {
this.source = source;
}
public Date getTimeStamp() {
return timeStamp;
}
public void setTimeStamp(Date timeStamp) {
this.timeStamp = timeStamp;
}


public void display()
{
System.out.println(name +" " + "in folder: " + source + " on " + timeStamp );
}



there are also some other classes associated with my project.. i have a rules file which computes the size of a folder and creates an object of Event class. every time this object of Event class is created i wwant to put it in a List<Event>.. how can i do this..

my rules is as follows:

rule "size"
when
  $p:  RuleContext($size: getOldContext().getParent().getUsableSpace() > (30*1024*1024))
  
then
   Event event = new Event("folder almost full", $p.getOldContext().getParent(), new Date());
   event.display();
   ......here i want to put this event into the List<Event> declared in Event Class.....

  end



thanks,
Sandhya