Package com.claymus.site.module.block.types.gwt

Examples of com.claymus.site.module.block.types.gwt.RichTextDTO


  }


  @Override
  protected BlockDTO getDTO() {
    RichTextDTO richtextDTO = new RichTextDTO();
    richtextDTO.setTitle(this.title);
    richtextDTO.setContent(this.content == null ? null : this.content.getValue());
    return richtextDTO;
  }
View Full Code Here


    return richtextDTO;
  }

  @Override
  protected void update(BlockDTO blockDTO) {
    RichTextDTO richtextDTO = (RichTextDTO) blockDTO;
    this.title = richtextDTO.getTitle();
    this.content = richtextDTO.getContent() == null ? null : new Text(richtextDTO.getContent());
  }
View Full Code Here

TOP

Related Classes of com.claymus.site.module.block.types.gwt.RichTextDTO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.