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

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents b6bad70d540a
children 3678e4f1a766
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
58 * A default implementation of the <code>IContextInformation</code> interface. 58 * A default implementation of the <code>IContextInformation</code> interface.
59 */ 59 */
60 public final class ContextInformation : IContextInformation { 60 public final class ContextInformation : IContextInformation {
61 61
62 /** The name of the context. */ 62 /** The name of the context. */
63 private final String fContextDisplayString; 63 private const String fContextDisplayString;
64 /** The information to be displayed. */ 64 /** The information to be displayed. */
65 private final String fInformationDisplayString; 65 private const String fInformationDisplayString;
66 /** The image to be displayed. */ 66 /** The image to be displayed. */
67 private final Image fImage; 67 private const Image fImage;
68 68
69 /** 69 /**
70 * Creates a new context information without an image. 70 * Creates a new context information without an image.
71 * 71 *
72 * @param contextDisplayString the string to be used when presenting the context 72 * @param contextDisplayString the string to be used when presenting the context