blob: fd34a81d29723ba92966be5b50798be44766062f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.ui.text.correction;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jdt.internal.corext.fix.IFix;
import org.eclipse.jdt.ui.text.java.IInvocationContext;
import org.eclipse.jdt.internal.ui.fix.ICleanUp;
public final class SerialVersionDefaultProposal extends FixCorrectionProposal {
public SerialVersionDefaultProposal(IFix fix, ICleanUp up, int relevance, Image image, IInvocationContext context) {
super(fix, up, relevance, image, context);
}
/**
* {@inheritDoc}
*/
public String getAdditionalProposalInfo() {
return CorrectionMessages.SerialVersionDefaultProposal_message_default_info;
}
}