Package com.google.collide.dtogen.definitions

Examples of com.google.collide.dtogen.definitions.SimpleDto.iDontStartWithGet()


    final String nameString = "Something";
    final int intValue = 1;

    SimpleDto dto = SimpleDtoImpl.make().setName(nameString).setIDontStartWithGet(intValue);
    assertEquals(nameString, dto.getName());
    assertEquals(intValue, dto.iDontStartWithGet());
    assertEquals(SimpleDto.TYPE, dto.getType());
  }
}
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.