comparison dwtx/jface/text/contentassist/IContentAssistant.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents c4fb132a086c
children
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
111 */ 111 */
112 public interface IContentAssistant { 112 public interface IContentAssistant {
113 113
114 //------ proposal popup orientation styles ------------ 114 //------ proposal popup orientation styles ------------
115 /** The context info list will overlay the list of completion proposals. */ 115 /** The context info list will overlay the list of completion proposals. */
116 public final static int PROPOSAL_OVERLAY= 10; 116 public const static int PROPOSAL_OVERLAY= 10;
117 /** The completion proposal list will be removed before the context info list will be shown. */ 117 /** The completion proposal list will be removed before the context info list will be shown. */
118 public final static int PROPOSAL_REMOVE= 11; 118 public const static int PROPOSAL_REMOVE= 11;
119 /** The context info list will be presented without hiding or overlapping the completion proposal list. */ 119 /** The context info list will be presented without hiding or overlapping the completion proposal list. */
120 public final static int PROPOSAL_STACKED= 12; 120 public const static int PROPOSAL_STACKED= 12;
121 121
122 //------ context info box orientation styles ---------- 122 //------ context info box orientation styles ----------
123 /** Context info will be shown above the location it has been requested for without hiding the location. */ 123 /** Context info will be shown above the location it has been requested for without hiding the location. */
124 public final static int CONTEXT_INFO_ABOVE= 20; 124 public const static int CONTEXT_INFO_ABOVE= 20;
125 /** Context info will be shown below the location it has been requested for without hiding the location. */ 125 /** Context info will be shown below the location it has been requested for without hiding the location. */
126 public final static int CONTEXT_INFO_BELOW= 21; 126 public const static int CONTEXT_INFO_BELOW= 21;
127 127
128 128
129 /** 129 /**
130 * Installs content assist support on the given text viewer. 130 * Installs content assist support on the given text viewer.
131 * 131 *