01: package javaparser;
02:
03: import java.awt.Color;
04:
05: /** Methods, constructors and fields are classed in public, private, protected, package scope categories.
06: */
07: public class MainModifierNode// extends ParserTreeNode
08: {
09: /*
10: public Color iconColor;
11: public MainModifierNode(String name, Color iconColor)
12: {
13: super(name);
14: this.iconColor = iconColor;
15: }
16:
17: /** Call this to help GC !
18: *
19: @Override
20: public void terminate()
21: {
22: super.terminate();
23: iconColor = null;
24: }
25: */
26: }
|