Coverage Report - org.kuali.rice.krad.uif.widget.LightBoxLookup
 
Classes in this File Line Coverage Branch Coverage Complexity
LightBoxLookup
0%
0/5
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation Licensed under the Educational Community
 3  
  * License, Version 1.0 (the "License"); you may not use this file except in
 4  
  * compliance with the License. You may obtain a copy of the License at
 5  
  * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law
 6  
  * or agreed to in writing, software distributed under the License is
 7  
  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 8  
  * KIND, either express or implied. See the License for the specific language
 9  
  * governing permissions and limitations under the License.
 10  
  */
 11  
 package org.kuali.rice.krad.uif.widget;
 12  
 
 13  
 /**
 14  
  * Used for rendering a lightbox in the UI to display the result of a submit in
 15  
  * a light box. This is used for the quickfinder lookup.
 16  
  * 
 17  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 18  
  */
 19  
 public class LightBoxLookup extends WidgetBase {
 20  
     private static final long serialVersionUID = -8571541274489677888L;
 21  
 
 22  
     private String actionParameterMapString;
 23  
 
 24  
     public LightBoxLookup() {
 25  0
         super();
 26  0
     }
 27  
 
 28  
     /**
 29  
      * Setter for the action parameter map javascript string
 30  
      * 
 31  
      * @param the
 32  
      *            action parameter map javascript string
 33  
      */
 34  
     public void setActionParameterMapString(String actionParameterMapString) {
 35  0
         this.actionParameterMapString = actionParameterMapString;
 36  0
     }
 37  
 
 38  
     /**
 39  
      * Action parameter map javascript string
 40  
      * <p>
 41  
      * The action parameter map string will be used to write these parameters to
 42  
      * the form.
 43  
      * </p>
 44  
      * 
 45  
      * @return the action parameter map javascript string
 46  
      */
 47  
     public String getActionParameterMapString() {
 48  0
         return actionParameterMapString;
 49  
     }
 50  
 
 51  
 }