*/
public IndexTuple getAdviceIndexFor(final String name) {
if (name == null) {
throw new IllegalArgumentException("advice name can not be null");
}
final IndexTuple index = (IndexTuple)m_adviceIndexes.get(name);
if (index == null) {
throw new DefinitionException("advice " + name + " is not properly defined");
}
return index;
}