Coverage Report - org.trails.page.InvokeMethodPage
 
Classes in this File Line Coverage Branch Coverage Complexity
InvokeMethodPage
0% 
N/A 
1
 
 1  
 /*
 2  
  * Copyright 2004 Chris Nelson
 3  
  *
 4  
  * Licensed under the Apache 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 http://www.apache.org/licenses/LICENSE-2.0
 7  
  * Unless required by applicable law or agreed to in writing,
 8  
  * software distributed under the License is distributed on an "AS IS" BASIS,
 9  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 10  
  * See the License for the specific language governing permissions and limitations under the License.
 11  
  */
 12  
 package org.trails.page;
 13  
 
 14  
 import java.beans.MethodDescriptor;
 15  
 
 16  
 import org.apache.tapestry.html.BasePage;
 17  
 
 18  
 
 19  
 /**
 20  
  * @author fus8882
 21  
  *         <p/>
 22  
  *         TODO To change the template for this generated type comment go to
 23  
  *         Window - Preferences - Java - Code Style - Code Templates
 24  
  */
 25  0
 public abstract class InvokeMethodPage extends BasePage
 26  
 {
 27  
         public abstract Object getModel();
 28  
 
 29  
         public abstract void setModel(Object Model);
 30  
 
 31  
         public abstract MethodDescriptor getMethodDescriptor();
 32  
 
 33  
         public abstract void setMethodDescriptor(MethodDescriptor MethodDescriptor);
 34  
 }