Examples of DerivedExample


Examples of org.company.recordshop.domain.DerivedExample

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

    if (source.isSecondo() != null) {
      result.setSecondo(source.isSecondo());
    }
    if (source.getFourth() != null) {
      result.setFourth(source.getFourth());
    }

    return result;
  }
View Full Code Here

Examples of org.company.recordshop.domain.DerivedExample

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

    if (source.isSecondo() != null) {
      result.setSecondo(source.isSecondo());
    }
    if (source.getFourth() != null) {
      result.setFourth(source.getFourth());
    }

    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.