com.iplanet.jato.view
Class TiledViewInvocation

java.lang.Object
  |
  +--com.iplanet.jato.view.ViewInvocation
        |
        +--com.iplanet.jato.view.TiledViewInvocation

public class TiledViewInvocation
extends ViewInvocation

Contains relevant values for a request invocation on a tiled view object. This class is used internally by the foundation classes and should not generally be useful to developers.

Version:
JATO/1.2.2 $Id: TiledViewInvocation.java,v 1.14 2002/03/16 03:26:41 todd Exp $

Constructor Summary
TiledViewInvocation(RequestHandler targetRequestHandler, java.lang.String childName, java.lang.String qualifiedName, int rowNumber, int imageX, int imageY, CommandDescriptor commandDescriptor)
          Creates a TiledViewInvocation object
 
Method Summary
 int getRowNumber()
          Returns the index of the tile which is associated with the request invocation.
 java.lang.String toString()
          Returns a String representation of this TiledViewInvocation.
 
Methods inherited from class com.iplanet.jato.view.ViewInvocation
getChildName, getCommandDescriptor, getImageXCoordinate, getImageYCoordinate, getQualifiedChildName, getTargetRequestHandler, hasImageCoordinates
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TiledViewInvocation

public TiledViewInvocation(RequestHandler targetRequestHandler,
                           java.lang.String childName,
                           java.lang.String qualifiedName,
                           int rowNumber,
                           int imageX,
                           int imageY,
                           CommandDescriptor commandDescriptor)
Creates a TiledViewInvocation object
Parameters:
targetRequestHandler - The RequestHandler to which the request should be directed.
childName - The unqualified name of the child View associated with the request invocation.
qualifiedChildName - The fully qualified name of the child View associated with the request invocation.
rowNumber - The index of the tile view which is associated with the request invocation.
imageX - The X coordinate value of the image which triggerd the request.
imageY - The Y coordinate value of the image which triggerd the request.
commandDescriptor - The CommandDescriptor
Method Detail

toString

public java.lang.String toString()
Returns a String representation of this TiledViewInvocation.
Overrides:
toString in class ViewInvocation
Returns:
a String representation of this TiledViewInvocation.

getRowNumber

public int getRowNumber()
Returns the index of the tile which is associated with the request invocation.
Returns:
The index of the tile which is associated with the request invocation.