aminePlatform.kernel.lexicons
Interface Muable

All Known Implementing Classes:
AmineBoolean, AmineDouble, AmineInteger, Identifier

public interface Muable

Title : lexicons.Muable interface

Description : Muable interface contains a specification of the clone() method. Currently it is implemented by Amine Simple Classes that are muable (Identifier, AmineInteger, AmineDouble and AmineBoolean), their values could change. Note that simple Java classes called wrappers (like Integer, Double, Boolean, etc.) are not muable; the value could not change. If the value is not muable, the same object could be used over and over and it is irrelevant to create a copy (or a clone) of this object. However, for a muable object, its copy (or clonage) could be relevant.

Implemented (currently) by: Identifier, AmineInteger, AmineDouble and AmineBoolean

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


Method Summary
 java.lang.Object clone()
           
 

Method Detail

clone

public java.lang.Object clone()