EMFClass target, Reference reference) {
if (name.equals("@implementation")) {
// make an implementation semantics link
ImplementationNote note = factory.createImplementationNote();
note.setDescription(description);
note.setReference(reference);
// add it to the EMFclass
target.getImplementationNotes().add(note);
}