Clover Coverage Report - sampleapp 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
13   67   5   2.6
0   35   0.38   5
5     1  
1    
 
  TravelDocumentForm2       Line # 28 13 0% 5 18 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007 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.opensource.org/licenses/ecl2.php
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 edu.sampleu.travel.web.form;
17   
18    import javax.servlet.http.HttpServletRequest;
19   
20    import org.apache.struts.action.ActionMapping;
21    import org.kuali.rice.kns.web.struts.form.KualiTransactionalDocumentFormBase;
22    import org.kuali.rice.kns.web.ui.HeaderField;
23    import org.kuali.rice.kns.workflow.service.KualiWorkflowDocument;
24   
25    import edu.sampleu.travel.bo.TravelAccount;
26    import edu.sampleu.travel.document.TravelDocument2;
27   
 
28    public class TravelDocumentForm2 extends KualiTransactionalDocumentFormBase {
29   
 
30  0 toggle @Override
31    public void populateHeaderFields(KualiWorkflowDocument workflowDocument) {
32  0 getDocInfo().clear();
33  0 getDocInfo().addAll(getStandardHeaderFields(workflowDocument));
34  0 getDocInfo().add(new HeaderField("DataDictionary.AttributeReferenceDummy.attributes.initiatorNetworkId", "Yahoo!"));
35  0 getDocInfo().add(new HeaderField("DataDictionary.AttributeReferenceDummy.attributes.initiatorNetworkId", "Yahoo!"));
36  0 getDocInfo().add(new HeaderField("DataDictionary.AttributeReferenceDummy.attributes.initiatorNetworkId", "Yahoo!"));
37    }
38   
39    private TravelAccount travelAccount = new TravelAccount();
40   
 
41  0 toggle public TravelDocumentForm2() {
42  0 super();
43  0 this.setDocument(new TravelDocument2());
44    }
45   
46    /*
47    * Reset method - reset attributes of form retrieved from session otherwise
48    * we will always call docHandler action
49    * @param mapping
50    * @param request
51    */
 
52  0 toggle public void reset(ActionMapping mapping, HttpServletRequest request) {
53  0 this.setMethodToCall(null);
54  0 this.setRefreshCaller(null);
55  0 this.setAnchor(null);
56  0 this.setCurrentTabIndex(0);
57    }
58   
 
59  0 toggle public TravelAccount getTravelAccount() {
60  0 return travelAccount;
61    }
62   
 
63  0 toggle public void setTravelAccount(TravelAccount travelAccount) {
64  0 this.travelAccount = travelAccount;
65    }
66   
67    }