String resolvedName;
String[] resolvedLocations;
Bundle catalogue;
public CatalogueInfo(String name, String[] locations) throws PatternException {
this.name = new PreparedVariableResolver(name, manager);
this.locations = new PreparedVariableResolver[locations.length];
for (int i=0; i < locations.length; ++i) {
this.locations[i] = new PreparedVariableResolver(locations[i], manager);
}
}