Posted By:
jyothi_y
Posted On:
Thursday, August 8, 2002 10:05 PM
Hi
you can not declare a method as abstract static,to have a static method in your abstract class write like this.
public abstract class Factory {
public static String get(...) {
return null;
}
public static int save(...) {
...
}
}
Now you can over ride this method in your MyFactory class.
Hope this will help you.
Regards---Jyothi.