com.esri.aims.mtier.model.wmsmap
Class WmsLayer

java.lang.Object
  |
  +--com.esri.aims.mtier.model.wmsmap.WmsLayer
All Implemented Interfaces:
Serializable

public class WmsLayer
extends Object
implements Serializable

Defines a WMS Layer with name, style, SRS, and bounding box.

See Also:
Serialized Form

Constructor Summary
WmsLayer()
           
 
Method Summary
 Envelope getEnvelope()
          Returns the Layer object's Envelope object.
 String getName()
          Returns the Layer Name.
 String getSRS()
          Returns the Layer SRS.
 String getStyle()
          Returns the Layer style.
 String getTitle()
          Returns the Layer title.
 void setEnvelope(Envelope envelope)
          Sets the Layer object's Envelope object.
 void setName(String name)
          sets the Layer Name.
 void setSRS(String srs)
          sets the Layer SRS.
 void setStyle(String style)
          sets the Layer style.
 void setTitle(String title)
          sets the Layer Title.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WmsLayer

public WmsLayer()
Method Detail

setName

public void setName(String name)
sets the Layer Name.


getName

public String getName()
Returns the Layer Name.

Returns:
Name

setTitle

public void setTitle(String title)
sets the Layer Title.

Parameters:
title - as string

getTitle

public String getTitle()
Returns the Layer title.

Returns:
title
See Also:
#title

setSRS

public void setSRS(String srs)
sets the Layer SRS.

Parameters:
srs -
See Also:
#srs

getSRS

public String getSRS()
Returns the Layer SRS.

Returns:
srs
See Also:
#srs

setStyle

public void setStyle(String style)
sets the Layer style.

Parameters:
style -

getStyle

public String getStyle()
Returns the Layer style.

Returns:
style

setEnvelope

public void setEnvelope(Envelope envelope)
Sets the Layer object's Envelope object.

Parameters:
envelope - the Envelope object
See Also:
getEnvelope()

getEnvelope

public Envelope getEnvelope()
Returns the Layer object's Envelope object.

Returns:
Envelope
See Also:
setEnvelope(com.esri.aims.mtier.model.envelope.Envelope)