blob: a43742ffc61c02a641ae069783f7040bb92f92c1 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2008 The University of York.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.common.dt.editor.outline;
import java.io.File;
public class EditorSelection {
protected int line;
protected int column;
protected File file;
public EditorSelection(File file, int line, int column) {
super();
this.line = line;
this.column = column;
this.file = file;
}
public int getLine() {
return line;
}
public void setLine(int line) {
this.line = line;
}
public int getColumn() {
return column;
}
public void setColumn(int column) {
this.column = column;
}
public File getFile() {
return file;
}
public void setFile(File file) {
this.file = file;
}
}