Examples of KaderExample


Examples of org.company.recordshop.domain.KaderExample

   *
   * @return {@link KaderExample}, the resulting businessclass object.
   */
  public KaderExample exampleFromDto(final KaderDto source) {
    Assert.notNull(source, "argument [source] may not be null");
    KaderExample result = new KaderExample();

    if (source.getNaam() != null) {
      result.setNaam(source.getNaam());
    }

    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.