jadex.swing.map
Interface MapPointDisplay

All Known Implementing Classes:
LocusDisplay, CloneDisplay

public interface MapPointDisplay

This is the specification of a MapPointDisplay. All mappoint display should implement this interface.


Method Summary
 LocusLayout getNameLayout()
          Get the layout name.
 boolean isConnectShown()
          Get the status of the connecting lines.
 void setConnectShown(boolean shown)
          Control if the connecting lines should be displayed or not.
 void setMouseInName(java.lang.String name)
          Record the name of the MapPoint where the mouse is in.
 void setNameLayout(java.lang.String layoutName)
          Set the name layout by layout name.
 void setRange(MapRange r)
          Set the MapRange to be displayed.
 

Method Detail

setRange

public void setRange(MapRange r)
Set the MapRange to be displayed.
Parameters:
r - the MapRange to be displayed.

setNameLayout

public void setNameLayout(java.lang.String layoutName)
Set the name layout by layout name.
Parameters:
layoutName - the Name of the Layout to be used.

setConnectShown

public void setConnectShown(boolean shown)
Control if the connecting lines should be displayed or not.
Parameters:
shown - true for showing the connecting lines.

isConnectShown

public boolean isConnectShown()
Get the status of the connecting lines.
Returns:
true if the connecting lines are displayed.

setMouseInName

public void setMouseInName(java.lang.String name)
Record the name of the MapPoint where the mouse is in.
Parameters:
name - the name of the MapPoint where the mouse is in.

getNameLayout

public LocusLayout getNameLayout()
Get the layout name.
Returns:
the name of the layout.