[all packages]
[package net.sf.pizzacompiler.lang]
[class hierarchy]
[index]
public class net.sf.pizzacompiler.lang.Cell<A>
(source file: /home/enno/source/tmp/pizza/main/src/net/sf/pizzacompiler/lang/Cell.pizza)
java.lang.Object
|
+----net.sf.pizzacompiler.lang.Cell<A>
The pure class interface.
public class Cell<A>
implements java.io.Serializable
-
A class for (mutable) cells of values.
![Constuctor Index](p-images/constructor-index.gif)
Cell(A)
-
Constructs a new Cell.
![Variables Index](p-images/variable-index.gif)
value
-
![Methods](p-images/method-index.gif)
equals(Object)
- is this cell (structurally) equal to another cell?
hashCode()
-
a hashcode for this cell.
toString()
- a string representation of this cell
![Constructors](p-images/constructors.gif)
Cell
public case Cell(A value);
-
Constructs a new Cell.
- Parameters:
- value - value in the cell
![Variables](p-images/variables.gif)
value
public A value;
![Methods](p-images/methods.gif)
hashCode
public int hashCode();
-
a hashcode for this cell.
- Overrides:
- hashCode in class Object
equals
public boolean equals(Object other);
- is this cell (structurally) equal to another cell?
- Overrides:
- equals in class Object
toString
public String toString();
- a string representation of this cell
- Overrides:
- toString in class Object
[all packages]
[package net.sf.pizzacompiler.lang]
[class hierarchy]
[index]
net.sf.pizzacompiler.lang.Cell.html