Anonymous
02-18-2005, 06:43 PM
I have a class that looks like
public interface AttributeList {
void addAttribute(Attribute a, boolean isSignificant);
Attribute getAttribute(int index);
int getAttributesCount();
boolean isAttributeSignificant(int index);
}
which I want to wire together using spring. Is there any way to do this? If not, it means I will have to re-write my interfaces in order to fit into the container.
public interface AttributeList {
void addAttribute(Attribute a, boolean isSignificant);
Attribute getAttribute(int index);
int getAttributesCount();
boolean isAttributeSignificant(int index);
}
which I want to wire together using spring. Is there any way to do this? If not, it means I will have to re-write my interfaces in order to fit into the container.