Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

ch.ethz.prose.query
Class Tuple  view Tuple download Tuple.java

java.lang.Object
  extended bych.ethz.prose.query.Tuple
All Implemented Interfaces:
java.io.Serializable

public class Tuple
extends java.lang.Object
implements java.io.Serializable

Class Tuple XXX

Version:
$Revision: 1.1.1.1 $

Field Summary
(package private)  AspectSurrogate aspectSurrogate
           
(package private)  CrosscutSurrogate crosscutSurrogate
           
(package private)  JoinPointRequestSurrogate jpSurrogate
           
 
Constructor Summary
Tuple()
           
Tuple(AspectSurrogate as, CrosscutSurrogate cs, JoinPointRequestSurrogate js)
           
 
Method Summary
 boolean equals(java.lang.Object obj)
          Indicates whether some other object is "equal to" this one.
 AspectSurrogate getAspectSurrogate()
           
 CrosscutSurrogate getCrosscutSurrogate()
           
 JoinPointRequestSurrogate getRequestSurrogate()
           
 int hashCode()
          Returns a hashcode for this object.
 void setAspectSurrogate(AspectSurrogate as)
           
 void setCrosscutSurrogate(CrosscutSurrogate cs)
           
 void setRequestSurrogate(JoinPointRequestSurrogate jprs)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

aspectSurrogate

AspectSurrogate aspectSurrogate

crosscutSurrogate

CrosscutSurrogate crosscutSurrogate

jpSurrogate

JoinPointRequestSurrogate jpSurrogate
Constructor Detail

Tuple

public Tuple(AspectSurrogate as,
             CrosscutSurrogate cs,
             JoinPointRequestSurrogate js)

Tuple

public Tuple()
Method Detail

setAspectSurrogate

public void setAspectSurrogate(AspectSurrogate as)

setCrosscutSurrogate

public void setCrosscutSurrogate(CrosscutSurrogate cs)

setRequestSurrogate

public void setRequestSurrogate(JoinPointRequestSurrogate jprs)

getRequestSurrogate

public JoinPointRequestSurrogate getRequestSurrogate()

getAspectSurrogate

public AspectSurrogate getAspectSurrogate()

getCrosscutSurrogate

public CrosscutSurrogate getCrosscutSurrogate()

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).


equals

public boolean equals(java.lang.Object obj)
Indicates whether some other object is "equal to" this one. The result is true if and only if obj is not null and is a instance of Tuple and has equal contents as this object.


hashCode

public int hashCode()
Returns a hashcode for this object.