Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ee1b3c8d1dc3a43455dff3c07e1574db169e12dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**********************************************************************
 * Copyright (c) 2004 Rational Software Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Common Public License v0.5
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v05.html
 * 
 * Contributors: 
 * IBM Rational Software - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.internal.ui.text.contentassist;

public interface IProblem {
	String getMessage();
}

Back to the top