net.refractions.udig.issues
Interface IRefreshControl


public interface IRefreshControl

An object that will refresh the issues viewer in the issues view upon request.

Since:
1.1.0
Author:
Jesse

Method Summary
 void refresh()
          Refreshes tree and labels from newly obtained data from the content and label providers.
 void refresh(boolean updateLabels)
          Refreshes tree and labels from newly obtained data from the content and label providers.
 void refresh(java.lang.Object element)
          Refreshes the viewer starting with the provided element.
 void refresh(java.lang.Object element, boolean updateLabels)
          Refreshes the viewer starting with the provided element.
 

Method Detail

refresh

void refresh()
Refreshes tree and labels from newly obtained data from the content and label providers. Same as refresh(true);


refresh

void refresh(boolean updateLabels)
Refreshes tree and labels from newly obtained data from the content and label providers.

Parameters:
updateLabels - true if labels should be refreshed.

refresh

void refresh(java.lang.Object element)
Refreshes the viewer starting with the provided element.

Parameters:
element - root element to refresh

refresh

void refresh(java.lang.Object element,
             boolean updateLabels)
Refreshes the viewer starting with the provided element. Labels are updated if updateLabels is true

Parameters:
element - root element to refresh
updateLabels - true if labels should be refreshed.