boolean updatePurpose;
public FunctionList(Document document, JComponent source) {
super(document, source);
// TODO: Convert to a static final enum set field in DocumentState.
DocumentState ds = document.getModes().getDocumentState();
updatePurpose = ds==DocumentState.APPEND_PURPOSE || ds==DocumentState.PREPEND_PURPOSE || ds==DocumentState.QUICK_RENAME;
}