blob: d2027de5f8f39fee702c71927ef7e8895ad32378 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
* (Much of original functionality has been factored out, see new classes for
* relevant contributor credits.)
*******************************************************************************/
package org.eclipse.mylyn.internal.gerrit.ui.editor;
import org.eclipse.mylyn.internal.gerrit.ui.factories.PatchSetUiFactoryProvider;
import org.eclipse.mylyn.reviews.ui.spi.editor.ReviewSetSection;
/**
* Displays patch sets within sub-sections, supporting lazy loading of each patch set.
*
* @author Miles Parker
*/
public class PatchSetSection extends ReviewSetSection {
public PatchSetSection() {
setPartName(Messages.PatchSetSection_Patch_Sets);
}
@Override
protected PatchSetUiFactoryProvider getUiFactoryProvider() {
return new PatchSetUiFactoryProvider();
}
}