@Override
public VariableClassification getVariableClassification()
{
IScopedNode scopedNode = getScopeNode();
IASNode node = scopedNode;
if (node instanceof ICommonClassNode || node.getParent() instanceof ICommonClassNode)
return VariableClassification.CLASS_MEMBER;
if (node.getParent() instanceof IInterfaceNode)
return VariableClassification.INTERFACE_MEMBER;
if (node.getParent() instanceof PackageNode)
return VariableClassification.PACKAGE_MEMBER;
return VariableClassification.LOCAL;
}