类 FieldCompletion
- java.lang.Object
-
- org.fife.ui.autocomplete.AbstractCompletion
-
- org.fife.ui.autocomplete.BasicCompletion
-
- org.meteoinfo.console.jython.AbstractJythonSourceCompletion
-
- org.meteoinfo.console.autocomplete.FieldCompletion
-
- 所有已实现的接口:
Comparable<org.fife.ui.autocomplete.Completion>,org.fife.ui.autocomplete.Completion,JythonSourceCompletion
public class FieldCompletion extends AbstractJythonSourceCompletion
A completion for a Java field. This completion gets its information from one of two sources:- A
FieldInfoinstance, which is loaded by parsing a class file. This is used when this completion represents a field found in a compiled library. - A
Fieldinstance, which is created when parsing a Java source file. This is used when the completion represents a field found in uncompiled source, such as the source in an RSyntaxTextArea, or in a loose file on disk.
- 版本:
- 1.0
- 作者:
- Robert Futrell
-
-
构造器概要
构造器 构造器 说明 FieldCompletion(org.fife.ui.autocomplete.CompletionProvider provider, String replacementText)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetEnclosingClassName(boolean fullyQualified)StringgetSignature()StringgetType()booleanisDeprecated()voidrendererText(Graphics g, int x, int y, boolean selected)Used by JythonCellRenderer to render this completion choice.-
从类继承的方法 org.meteoinfo.console.jython.AbstractJythonSourceCompletion
compareTo, getAlreadyEntered
-
从类继承的方法 org.fife.ui.autocomplete.BasicCompletion
getReplacementText, getShortDescription, getSummary, setShortDescription, setSummary, toString
-
从类继承的方法 org.fife.ui.autocomplete.AbstractCompletion
getIcon, getInputText, getProvider, getRelevance, getToolTipText, setIcon, setRelevance
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
从接口继承的方法 org.fife.ui.autocomplete.Completion
compareTo, getAlreadyEntered, getIcon, getInputText, getProvider, getRelevance, getReplacementText, getSummary, getToolTipText
-
从接口继承的方法 org.meteoinfo.console.jython.JythonSourceCompletion
equals
-
-
-
-
构造器详细资料
-
FieldCompletion
public FieldCompletion(org.fife.ui.autocomplete.CompletionProvider provider, String replacementText)
-
-
方法详细资料
-
rendererText
public void rendererText(Graphics g, int x, int y, boolean selected)
从接口复制的说明:JythonSourceCompletionUsed by JythonCellRenderer to render this completion choice.- 指定者:
rendererText在接口中JythonSourceCompletion
-
getEnclosingClassName
public String getEnclosingClassName(boolean fullyQualified)
-
getSignature
public String getSignature()
-
getType
public String getType()
-
isDeprecated
public boolean isDeprecated()
-
-