com.jeffpalm.javaparser
Interface Scope


public interface Scope

Provides methods which all scopes must implement. See JLS 6.3 for a description of scopes

Since:
jRefactory 2.9.0, created October 16, 2003
Author:
Mike Atkinson

Method Summary
 Scope getParent()
          Retrieves this scope's parent
 void setParent(Scope parent)
          Points this scope to its parent
 

Method Detail

setParent

void setParent(Scope parent)
Points this scope to its parent

Parameters:
parent - The new parent value

getParent

Scope getParent()
Retrieves this scope's parent

Returns:
The parent value