can files be used in aspectj?
im trying to store the output of a program in a file using the following
colde:
public aspect Test
{
FileOutputStream f=new FileOutputStream("test.txt");
before(): //some code
{
fo.write("text");
}
after():
{
}
}
the above code gives me error.can a file objec be created in an aspect?
i would be glad to get this problem solved as early as possible.
--
Shambhavi Joshi
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users