/*
* Created on 28 dc. 2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package fr.umlv.plo.ploObject;
/**
* @author jmoisson
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class MyBoolean implements MyObject {
private boolean value;
/**
* @param value
*/
public MyBoolean(boolean value) {
this.value = value;
}
public MyObject getCopy() {
return new MyBoolean(value);
}
public boolean booleanValue() {
// TODO Auto-generated method stub
return value;
}
}
|