1 package de.lathanda.eos.baseparser;
9 class AutoCompleteInfo
implements AutoCompleteInformation {
11 private AutoCompleteType t;
13 private int selectionStart;
14 private int selectionLength;
16 public AutoCompleteInfo(String name, AutoCompleteType t,
int type,
int start,
int length) {
20 this.selectionStart = start;
21 this.selectionLength = length;
25 public String getScantext() {
30 public String getLabel() {
35 public int getType() {
40 public String getTooltip() {
45 public AutoCompleteType getCls() {
50 public String getSort() {
51 return PREFIX[type] + name;
55 public String getTemplate() {
60 public int getSelectionStart() {
61 return selectionStart;
65 public int getSelectionLength() {
66 return selectionLength;