org.plasma.sdo.profile.SDODocumentation Maven / Gradle / Ivy
//==============================================================================
//
// This software artifact was generated using Plasma
// provisioning tools. Do not modify.
//
//==============================================================================
package org.plasma.sdo.profile;
import fUML.Syntax.Classes.Kernel.*;
import org.modeldriven.fuml.repository.ext.Stereotype;
import org.plasma.sdo.Documentation;
/**
*
* This stereotype annotates or tags a UML owned comment for any UML element in a model providing hints as to the nature of the comment and how it might be presented.
*
* @author Plasma-Team
* @version 2.0.3
*/
public class SDODocumentation extends Stereotype
implements Documentation
{
public static final String BASE__COMMENT = "base_Comment";
public static final String TYPE = "type";
private Comment base_Comment;
private DocumentationType type;
public Comment getBase_Comment() {
return this.base_Comment;
}
public void setBase_Comment(Comment value) {
this.base_Comment = value;
}
public DocumentationType getType() {
return this.type;
}
public void setType(DocumentationType value) {
this.type = value;
}
}