Package org.martinlaw.bo

Examples of org.martinlaw.bo.EventType


   
  }

  @Override
  public Type getExpectedOnRetrieve() {
    EventType eventType = new EventType();
    eventType.setId(10031l);
    eventType.setName("Mention");
   
    return eventType;
  }
View Full Code Here


    E event = e.newInstance();
    final Timestamp date = new Timestamp(System.currentTimeMillis());
    event.setStartDate(date);
    final String location = "Afraha";
    event.setLocation(location);
    EventType eventType = new EventType();
    final String eventName = "Demo";
    eventType.setName(eventName);
    event.setType(eventType);
   
    SimpleDateFormat sdf = new SimpleDateFormat(MartinlawConstants.DEFAULT_TIMESTAMP_FORMAT);
    final String formattedDate = sdf.format(event.getStartDate());
   
View Full Code Here

   * @return
   */
  public MatterEvent getTestMatterEventForStringTemplates() {
    MatterEvent caseEvent = new MatterEvent();
    caseEvent.setId(1001l);
    EventType eventType = new EventType();
    eventType.setName("judgement");
    caseEvent.setType(eventType);
   
    CourtCase theCase = new CourtCase();
    theCase.setLocalReference("my/cases/1");
    theCase.setName("water vs fire");
View Full Code Here

TOP

Related Classes of org.martinlaw.bo.EventType

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.