EOS 2  1.1.0
Einfache Objektbasierte Sprache
AutoCompleteInformation.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.baseparser;
2 
3 public interface AutoCompleteInformation extends Comparable<AutoCompleteInformation> {
4 
5  final static char[] PREFIX = { '@', '%', '!', '$', 'ยง', '&' };
6  final int METHOD = 0;
7  final int PROPERTY = 1;
8  final int CLASS = 2;
9  final int PRIVATE = 3;
10  final int NEUTRAL = 4;
11  final int CODE = 5;
12 
13  String getScantext();
14 
15  String getLabel();
16 
17  int getType();
18 
19  String getTooltip();
20 
22 
23  String getSort();
24 
25  String getTemplate();
26 
28 
30 
31  @Override
33  if (b.getType() == getType()) {
34  return getSort().compareTo(b.getSort());
35  } else {
36  return getType() - b.getType();
37  }
38  }
39 
40 }
Impressum