1 /******************************************************************************* 2 * Copyright (c) 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.ltk.core.refactoring; 12 13 /** 14 * Descriptor of a change object. These descriptor objects may be used to 15 * describe the effect of a {@link Change}. Subclasses may provide more 16 * specific information about the represented change. 17 * <p> 18 * Note: this class is indented to be subclassed by clients to provide 19 * specialized descriptors for particular changes. 20 * </p> 21 * 22 * @since 3.2 23 */ 24 public abstract class ChangeDescriptor { 25 26 /** 27 * Creates a new change descriptor. 28 */ 29 protected ChangeDescriptor() { 30 // Do nothing 31 } 32 }