blob: 05ec552ec2b470e2b1a13bab616bd66a7fe983bd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 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.ltk.internal.core.refactoring.history;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptorProxy;
/**
* Adapter class which adapts refactoring descriptors to refactoring descriptor
* proxies.
*
* @since 3.2
*/
public final class RefactoringDescriptorProxyAdapter extends RefactoringDescriptorProxy {
/** The encapsulated descriptor */
private final RefactoringDescriptor fDescriptor;
/**
* Creates a new refactoring descriptor proxy adapter.
*
* @param descriptor
* the descriptor to encapsulate
*/
public RefactoringDescriptorProxyAdapter(final RefactoringDescriptor descriptor) {
Assert.isNotNull(descriptor);
fDescriptor= descriptor;
}
/**
* {@inheritDoc}
*/
public int compareTo(final Object object) {
return fDescriptor.compareTo(object);
}
/**
* {@inheritDoc}
*/
public String getDescription() {
return fDescriptor.getDescription();
}
/**
* {@inheritDoc}
*/
public String getProject() {
return fDescriptor.getProject();
}
/**
* {@inheritDoc}
*/
public long getTimeStamp() {
return fDescriptor.getTimeStamp();
}
/**
* {@inheritDoc}
*/
public RefactoringDescriptor requestDescriptor(final IProgressMonitor monitor) {
return fDescriptor;
}
/**
* {@inheritDoc}
*/
public String toString() {
return fDescriptor.toString();
}
}