Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3105a17d0b99ad5a4eadd27e66ac59caa687169e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*******************************************************************************
 * Copyright (c) 2012 Ericsson
 * 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:
 *     Miles Parker (Tasktop Technologies) - initial API and implementation
 *     Guy Perron (Ericsson) - 423242: Add ability to edit comment from compare navigator popup
 *******************************************************************************/

package org.eclipse.mylyn.internal.reviews.ui;

/**
 * @author Miles Parker
 */
public interface ReviewsUiConstants {

	public static final String REVIEW_EXPLORER_ID = "org.eclipse.mylyn.reviews.Explorer"; //$NON-NLS-1$

	public static final String REVIEW_CONTENT_ID = "org.eclipse.mylyn.reviews.ui.ReviewContent"; //$NON-NLS-1$

	public static final String REVIEW_FLAT_CONTENT_ID = "org.eclipse.mylyn.reviews.ui.ReviewFlatContent"; //$NON-NLS-1$

	public static final String REVIEW_FILTER_FOR_COMMENTS = "org.eclipse.mylyn.reviews.ui.CommonFilter"; //$NON-NLS-1$

	public static final int DIALOG_DEFAULT_HEIGHT = 300;

	public static final int DIALOG_DEFAULT_WIDTH = 400;

}

Back to the top