blob: de2d85764e259a2eee39a3a0016f8d894d87b846 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.ui.markers;
public class MarkerInfo {
private final String file;
private final int line;
private final String message;
public MarkerInfo(String file, int line, String message) {
this.file = file;
this.line = line;
this.message = message;
}
/**
* @return the file
*/
public String getFile() {
return file;
}
/**
* @return the line
*/
public int getLine() {
return line;
}
/**
* @return the message
*/
public String getMessage() {
return message;
}
}