aminePlatform.util
Class AmineInteger

java.lang.Object
  extended byaminePlatform.util.AmineInteger
All Implemented Interfaces:
java.lang.Cloneable, Muable

public class AmineInteger
extends java.lang.Object
implements Muable, java.lang.Cloneable

Title : util.AmineInteger Class

Description : like Integer, AmineInteger is a Wrapper class for int value, but unlike Integer, the value of an AmineInteger object can be modified; the value is muable, that is why this class implements the Muable interface.

Copyright: Copyright (c) Adil KABBAJ, 2004-2009


Constructor Summary
AmineInteger(int i)
           
 
Method Summary
 java.lang.Object clone()
           
 boolean equals(java.lang.Object obj)
           
 int getInt()
           
 void inc()
           
 void inc(int j)
           
 void setInt(int i)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AmineInteger

public AmineInteger(int i)
Method Detail

getInt

public int getInt()

setInt

public void setInt(int i)

inc

public void inc()

inc

public void inc(int j)

clone

public java.lang.Object clone()
Specified by:
clone in interface Muable

equals

public boolean equals(java.lang.Object obj)

toString

public java.lang.String toString()