comparison dwtx/jface/text/templates/TemplateContext.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 02cd5f1224d3
children f70d9508c95c
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
49 * @since 3.0 49 * @since 3.0
50 */ 50 */
51 public abstract class TemplateContext { 51 public abstract class TemplateContext {
52 52
53 /** The context type of this context */ 53 /** The context type of this context */
54 private final TemplateContextType fContextType; 54 private const TemplateContextType fContextType;
55 /** Additional variables. */ 55 /** Additional variables. */
56 private final Map fVariables= new HashMap(); 56 private const Map fVariables= new HashMap();
57 /** A flag to indicate that the context should not be modified. */ 57 /** A flag to indicate that the context should not be modified. */
58 private bool fReadOnly; 58 private bool fReadOnly;
59 59
60 /** 60 /**
61 * Creates a template context of a particular context type. 61 * Creates a template context of a particular context type.