a

autocomplete

AutoComplete is a library allowing you to add IDE-like auto-completion (aka "code completion" or "Intellisense") to any Swing JTextComponent. Special integration is added for RSyntaxTextArea, since this feature is commonly needed when editing source code. Features include: Drop-down completion choice list. Optional companion "description" window, complete with full HTML support and navigable with hyperlinks. Optional parameter completion assistance for functions and methods, ala Eclipse and NetBeans. Completion information is typically specified in an XML file, but can even be dynamic.
http://www.fifesoft.com/rsyntaxtextarea
GNU Lesser General Public License
Robert Futrell
文件下载
文件名 操作
autocomplete-r239.jar 下载
autocomplete-r239.pom 下载
autocomplete-r239-sources.jar 下载
Apache Maven
<dependency>
  <groupId>com.fifesoft</groupId>
  <artifactId>autocomplete</artifactId>
  <version>r239</version>
</dependency>
Gradle Groovy
implementation 'com.fifesoft:autocomplete:r239'
Gradle Kotlin
implementation("com.fifesoft:autocomplete:r239")
Scala SBT
libraryDependencies += "com.fifesoft" % "autocomplete" % "r239"
Groovy Grape
@Grapes(
  @Grab(group='com.fifesoft', module='autocomplete', version='r239')
)
Apache Ivy
<dependency org="com.fifesoft" name="autocomplete" rev="r239" />
Leiningen
[com.fifesoft/autocomplete "r239"]
Apache Buildr
'com.fifesoft:autocomplete:jar:r239'