* @return the {@link Element} or {@code null}
*/
public Element decode(AnalysisContext context, int id) {
int[] path = indexToPath.get(id);
String[] components = getLocationComponents(path);
ElementLocation location = new ElementLocationImpl(components);
return context.getElement(location);
}