MatrixParameters changes for revisions 24972:24973

Replacement of Identifier by ReferenceIdentifier. This change has been forced by a GeoAPI change. Reverting this change causes a compilation failure, which is resolved by reapplying the same change as required by GeoAPI interfaces. So rewriting this contribution produces identical result (except for the removal of GenericName import).

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r24972:24973 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/parameter/MatrixParameters.java
Revision 24972Revision 24973
import java.util.Set;

// OpenGIS dependencies
import org.opengis.metadata.Identifier;
import org.opengis.parameter.GeneralParameterDescriptor;
import org.opengis.parameter.GeneralParameterValue;
import org.opengis.parameter.ParameterDescriptor;
import java.util.Set;

// OpenGIS dependencies
import org.opengis.parameter.GeneralParameterDescriptor;
import org.opengis.parameter.GeneralParameterValue;
import org.opengis.parameter.ParameterDescriptor;
import org.opengis.parameter.ParameterDescriptorGroup;
import org.opengis.parameter.ParameterNotFoundException;
import org.opengis.parameter.ParameterValue;
import org.opengis.referencing.operation.Matrix;
import org.opengis.util.GenericName;
import org.opengis.util.InternationalString;

// Geotools dependencies
import org.opengis.parameter.ParameterDescriptorGroup;
import org.opengis.parameter.ParameterNotFoundException;
import org.opengis.parameter.ParameterValue;
import org.opengis.referencing.ReferenceIdentifier;
import org.opengis.referencing.operation.Matrix;
import org.opengis.util.InternationalString;

// Geotools dependencies
 * Forward the call to the {@linkplain MatrixParameterDescriptors matrix parameter descriptors}
 * specified at construction time.
 */
public Identifier getName() {
    return descriptor.getName();
}
 * Forward the call to the {@linkplain MatrixParameterDescriptors matrix parameter descriptors}
 * specified at construction time.
 */
public ReferenceIdentifier getName() {
    return descriptor.getName();
}