*/
public IRConstant ( IRObject irObject)
{
super(irObject);
ConstantDef constantDef = ConstantDefHelper.narrow((org.omg.CORBA.Object)irObject);
setAssociatedTypeSystemNode(RemoteTypeSystem.createTypeSystemNode(constantDef.type_def()));
Any any = constantDef.value();
this.value = org.jacorb.ir.gui.remoteobject.ObjectRepresentantFactory.objectFromAny(any);
}