Coverage Report - org.kuali.student.r2.common.dto.TimeOfDayInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
TimeOfDayInfo
0%
0/10
0%
0/4
1.2
 
 1  
 /*
 2  
  * Copyright 2012 The Kuali Foundation Licensed under the
 3  
  *  Educational Community License, Version 2.0 (the "License"); you may
 4  
  *  not use this file except in compliance with the License. You may
 5  
  *  obtain a copy of the License at
 6  
  *
 7  
  *   http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  *  Unless required by applicable law or agreed to in writing,
 10  
  *  software distributed under the License is distributed on an "AS IS"
 11  
  *  BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  *  or implied. See the License for the specific language governing
 13  
  *  permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.r2.common.dto;
 17  
 
 18  
 import org.kuali.student.r2.common.infc.TimeOfDay;
 19  
 
 20  
 import javax.xml.bind.Element;
 21  
 import javax.xml.bind.annotation.*;
 22  
 import java.util.List;
 23  
 
 24  
 @XmlAccessorType(XmlAccessType.FIELD)
 25  
 @XmlType(name = "TimeOfDayInfo", propOrder = {"milliSeconds", "_futureElements"})
 26  
 public class TimeOfDayInfo implements TimeOfDay {
 27  
 
 28  
     @XmlElement
 29  
     private Long milliSeconds;
 30  
     @XmlAnyElement
 31  
     private List<Element> _futureElements;
 32  
 
 33  0
     public TimeOfDayInfo() {
 34  
 
 35  0
     }
 36  
 
 37  0
     public TimeOfDayInfo(TimeOfDay timeOfDay) {
 38  0
         if(null != timeOfDay) {
 39  0
             this.milliSeconds = timeOfDay.getMilliSeconds();
 40  
         }
 41  0
     }
 42  
 
 43  
     @Override
 44  
     public Long getMilliSeconds() {
 45  0
         return this.milliSeconds;
 46  
     }
 47  
 
 48  
     public void setMilliSeconds(Long milliSeconds) {
 49  0
         this.milliSeconds = milliSeconds;
 50  0
     }
 51  
 
 52  
     public boolean equals (TimeOfDay timeOfDay) {
 53  0
         return (this.milliSeconds.compareTo(timeOfDay.getMilliSeconds()) == 0);
 54  
     }
 55  
 }