blob: 6abcbf980bb3f8c512fe2b0149cff3e8d815dcd9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation 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
*
*******************************************************************************/
package org.eclipse.dltk.console;
public class ScriptConsoleCompletionProposal {
private final String insert;
private final String display;
private final String type;
public ScriptConsoleCompletionProposal(String insert, String display,
String type) {
this.insert = insert;
this.display = display;
this.type = type;
}
public String getDisplay() {
return display;
}
public String getInsert() {
return insert;
}
public String getType() {
return type;
}
}