blob: fb4e6d25dd4a883245256b1156b9ca4f36373b14 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.refactoring.changes;
import org.eclipse.core.runtime.Assert;
import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.ChangeDescriptor;
import org.eclipse.ltk.core.refactoring.RefactoringChangeDescriptor;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
import org.eclipse.jdt.core.refactoring.descriptors.JavaRefactoringDescriptor;
import org.eclipse.jdt.internal.corext.refactoring.RefactoringCoreMessages;
/**
* Dynamic validation state change with support for refactoring descriptors.
*
* @since 3.2
*/
public final class DynamicValidationRefactoringChange extends DynamicValidationStateChange {
/** The refactoring descriptor */
private final RefactoringDescriptor fDescriptor;
/**
* Creates a new dynamic validation refactoring change.
*
* @param descriptor
* the refactoring descriptor
* @param name
* the name of the change
*/
public DynamicValidationRefactoringChange(final JavaRefactoringDescriptor descriptor, final String name) {
super(name);
Assert.isNotNull(descriptor);
fDescriptor= descriptor;
}
/**
* Creates a new dynamic validation refactoring change.
*
* @param descriptor
* the refactoring descriptor
* @param name
* the name of the change
* @param changes
* the changes
*/
public DynamicValidationRefactoringChange(final JavaRefactoringDescriptor descriptor, final String name, final Change[] changes) {
super(name, changes);
Assert.isNotNull(descriptor);
Assert.isTrue(!descriptor.validateDescriptor().hasFatalError(), RefactoringCoreMessages.DynamicValidationRefactoringChange_fatal_error);
fDescriptor= descriptor;
}
/**
* {@inheritDoc}
*/
public ChangeDescriptor getDescriptor() {
return new RefactoringChangeDescriptor(fDescriptor);
}
}