com.lamatek.tags.google
Class GoogleMapLabelTag

java.lang.Object
  extended by BodyTagSupport
      extended by com.lamatek.tags.google.GoogleMapLabelTag

public class GoogleMapLabelTag
extends BodyTagSupport

GoogleMapLabelTag Represents a <googlemaps:label> tag. Developers should not extend this class or override it's methods.


Constructor Summary
GoogleMapLabelTag()
           
 
Method Summary
 int doEndTag()
          Overrides doEndTag() from BodyTagSupport.
 int doStartTag()
          Overrides doStartTag() from BodyTagSupport.
 java.lang.String getContent()
          Returns the text content for this label.
 java.lang.String getCss_class()
          Returns the current css class attribute for this label.
 float getOpacity()
          Returns the current opacity level (0-1) for this label.
 java.lang.String getPoint()
          Returns the point tag that determines where this label is placed.
 java.lang.String getStyle()
          Returns the current css style attribute for this label's surrounding div.
 int getX_offset()
          Returns the left/right offset (in pixels) from the point to place this label.
 int getY_offset()
          Returns the up/down offset (in pixels) from the point to place this label.
 boolean isHtml()
          Returns true if this label content is in html, false otherwise.
 void setContent(java.lang.String content)
          Returns the text content for this label.
 void setCss_class(java.lang.String css_class)
          Sets the css class attribute for this label's surrounding div.
 void setHtml(boolean html)
          Denotes whether or not content for this label is html.
 void setOpacity(float opacity)
          Sets the opacity level (0-1) for this label.
 void setPoint(java.lang.String point)
          Sets the point tag that determines where this label is placed.
 void setStyle(java.lang.String style)
          Sets the css style attribute for this label's surrounding div.
 void setX_offset(int x_offset)
          Sets the left/right offset (in pixels) from the point to place this label.
 void setY_offset(int y_offset)
          Sets the up/down offset (in pixels) from the point to place this label.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GoogleMapLabelTag

public GoogleMapLabelTag()
Method Detail

doStartTag

public int doStartTag()
Overrides doStartTag() from BodyTagSupport.


doEndTag

public int doEndTag()
Overrides doEndTag() from BodyTagSupport.


getCss_class

public java.lang.String getCss_class()
Returns the current css class attribute for this label.


setCss_class

public void setCss_class(java.lang.String css_class)
Sets the css class attribute for this label's surrounding div.


getPoint

public java.lang.String getPoint()
Returns the point tag that determines where this label is placed.


setPoint

public void setPoint(java.lang.String point)
Sets the point tag that determines where this label is placed. Must be a valid point id.


getStyle

public java.lang.String getStyle()
Returns the current css style attribute for this label's surrounding div.


setStyle

public void setStyle(java.lang.String style)
Sets the css style attribute for this label's surrounding div.


getContent

public java.lang.String getContent()
Returns the text content for this label.


setContent

public void setContent(java.lang.String content)
Returns the text content for this label.


isHtml

public boolean isHtml()
Returns true if this label content is in html, false otherwise.


setHtml

public void setHtml(boolean html)
Denotes whether or not content for this label is html.


getOpacity

public float getOpacity()
Returns the current opacity level (0-1) for this label.


setOpacity

public void setOpacity(float opacity)
Sets the opacity level (0-1) for this label.


getX_offset

public int getX_offset()
Returns the left/right offset (in pixels) from the point to place this label. Negative is left, positive is right.


setX_offset

public void setX_offset(int x_offset)
Sets the left/right offset (in pixels) from the point to place this label. Negative is left, positive is right.


getY_offset

public int getY_offset()
Returns the up/down offset (in pixels) from the point to place this label. Negative is up, positive is down.


setY_offset

public void setY_offset(int y_offset)
Sets the up/down offset (in pixels) from the point to place this label. Negative is up, positive is down.