![JAR search and dependency download from the Maven repository](/logo.png)
org.fife.ui.autocomplete.ShorthandCompletion Maven / Gradle / Ivy
/*
* 12/22/2008
*
* ShorhandCompletion.java - A completion that is shorthand for some other
* text.
* Copyright (C) 2008 Robert Futrell
* robert_futrell at users.sourceforge.net
* http://fifesoft.com/rsyntaxtextarea
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package org.fife.ui.autocomplete;
/**
* A completion where the input text is shorthand for (really, just different
* than) the actual text to be inserted. For example, the input text
* "sysout
" could be associated with the completion
* "System.out.println(
" in Java.
*
* @author Robert Futrell
* @version 1.0
*/
public class ShorthandCompletion extends BasicCompletion {
/**
* The text the user can start typing that will match this completion.
*/
private String inputText;
/**
* Constructor.
*
* @param provider The provider that returns this completion.
* @param inputText The text the user inputs to get this completion.
* @param replacementText The replacement text of the completion.
*/
public ShorthandCompletion(CompletionProvider provider, String inputText,
String replacementText) {
super(provider, replacementText);
this.inputText = inputText;
}
/**
* Constructor.
*
* @param provider The provider that returns this completion.
* @param inputText The text the user inputs to get this completion.
* @param replacementText The replacement text of the completion.
* @param shortDesc A short description of the completion. This will be
* displayed in the completion list. This may be null
.
*/
public ShorthandCompletion(CompletionProvider provider, String inputText,
String replacementText, String shortDesc) {
super(provider, replacementText, shortDesc);
this.inputText = inputText;
}
/**
* Constructor.
*
* @param provider The provider that returns this completion.
* @param inputText The text the user inputs to get this completion.
* @param replacementText The replacement text of the completion.
* @param shortDesc A short description of the completion. This will be
* displayed in the completion list. This may be null
.
* @param summary The summary of this completion. This should be HTML.
* This may be null
.
*/
public ShorthandCompletion(CompletionProvider provider, String inputText,
String replacementText, String shortDesc, String summary) {
super(provider, replacementText, shortDesc, summary);
this.inputText = inputText;
}
/**
* Returns the text the user must start typing to get this completion.
*
* @return The text the user must start to input.
*/
public String getInputText() {
return inputText;
}
/**
* If a summary has been set, that summary is returned. Otherwise, the
* replacement text is returned.
*
* @return A description of this completion (the text that will be
* inserted).
* @see #getReplacementText()
*/
public String getSummary() {
String summary = super.getSummary();
return summary!=null ? summary : ("" + getSummaryBody());
}
/**
* Returns the "body" of the HTML returned by {@link #getSummary()} when
* no summary text has been set. This is defined to return the replacement
* text in a monospaced font.
*
* @return The summary text's body, if no other summary has been defined.
* @see #getReplacementText()
*/
protected String getSummaryBody() {
return "" + getReplacementText();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy