r1132 - trunk/eugene/src/main/java/org/nuiton/eugene/models/object/xml
Author: echatellier Date: 2012-01-05 15:35:09 +0100 (Thu, 05 Jan 2012) New Revision: 1132 Url: http://nuiton.org/repositories/revision/eugene/1132 Log: Add doc about discriminator Modified: trunk/eugene/src/main/java/org/nuiton/eugene/models/object/xml/ObjectModelImplSuperClassRef.java Modified: trunk/eugene/src/main/java/org/nuiton/eugene/models/object/xml/ObjectModelImplSuperClassRef.java =================================================================== --- trunk/eugene/src/main/java/org/nuiton/eugene/models/object/xml/ObjectModelImplSuperClassRef.java 2012-01-04 17:18:32 UTC (rev 1131) +++ trunk/eugene/src/main/java/org/nuiton/eugene/models/object/xml/ObjectModelImplSuperClassRef.java 2012-01-05 14:35:09 UTC (rev 1132) @@ -5,7 +5,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2004 - 2010 CodeLutin + * Copyright (C) 2004 - 2012 CodeLutin, Chatellier Eric * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as @@ -26,25 +26,38 @@ package org.nuiton.eugene.models.object.xml; /** -* ObjectModelImplRef. -* -* Created: 14 janv. 2004 -* -* @author Cédric Pineau <pineau@codelutin.com> -* Copyright Code Lutin -* @version $Revision$ -* -* Last update : $Date$ -* by : $Author$ -*/ + * Reference to a super class (inheritance relation). + * + * A discriminator is the name of the inheritance relation. + * + * Created: 14 janv. 2004 + * + * @author Cédric Pineau <pineau@codelutin.com> + * Copyright Code Lutin + * @version $Revision$ + * + * Last update : $Date$ + * by : $Author$ + */ public class ObjectModelImplSuperClassRef extends ObjectModelImplRef { + /** Name of the inheritance relation. */ protected String discrimininator; + /** + * Set name of the inheritance relation. + * + * @param discrimininator name of the inheritance relation + */ public void setDiscriminator(String discrimininator) { this.discrimininator = discrimininator; } + /** + * Get name of the inheritance relation. + * + * @return name of the inheritance relation + */ public String getDiscriminator() { return discrimininator; }
participants (1)
-
echatellier@users.nuiton.org