Coverage Report - org.kuali.student.contract.model.TypeStateConstraint
 
Classes in this File Line Coverage Branch Coverage Complexity
TypeStateConstraint
0%
0/14
N/A
1
 
 1  
 /*
 2  
  * Copyright 2009 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may        obtain a copy of the License at
 7  
  *
 8  
  *         http://www.osedu.org/licenses/ECL-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.contract.model;
 17  
 
 18  
 import org.kuali.student.contract.model.Constraint;
 19  
 
 20  
 /**
 21  
  *
 22  
  * @author nwright
 23  
  */
 24  
 public class TypeStateConstraint
 25  
 {
 26  
 
 27  
  public TypeStateConstraint (String type, String state, Constraint constraint)
 28  0
  {
 29  0
   this.type = type;
 30  0
   this.state = state;
 31  0
   this.constraint = constraint;
 32  0
  }
 33  
 
 34  
  
 35  
  private String type;
 36  
 
 37  
  public String getType ()
 38  
  {
 39  0
   return type;
 40  
  }
 41  
 
 42  
  public void setType (String type)
 43  
  {
 44  0
   this.type = type;
 45  0
  }
 46  
 
 47  
  private String state;
 48  
 
 49  
  public String getState ()
 50  
  {
 51  0
   return state;
 52  
  }
 53  
 
 54  
  public void setState (String state)
 55  
  {
 56  0
   this.state = state;
 57  0
  }
 58  
 
 59  
  private Constraint constraint;
 60  
 
 61  
  public Constraint getConstraint ()
 62  
  {
 63  0
   return constraint;
 64  
  }
 65  
 
 66  
  public void setConstraint (Constraint constraint)
 67  
  {
 68  0
   this.constraint = constraint;
 69  0
  }
 70  
 
 71  
 }