return widget;
}
private static void createAuthor(IPersistenceManager persistenceManager, W3CWidget model, IWidget widget){
if (model.getAuthor() != null){
IAuthor author = persistenceManager.newInstance(IAuthor.class);
author.setAuthor(model.getAuthor().getAuthorName());
author.setEmail(model.getAuthor().getEmail());
author.setHref(model.getAuthor().getHref());
author.setDir(model.getAuthor().getDir());
author.setLang(model.getAuthor().getLang());
widget.setAuthor(author);
}
}