001 /*
002 * Copyright 2004 Chris Nelson
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
007 * Unless required by applicable law or agreed to in writing,
008 * software distributed under the License is distributed on an "AS IS" BASIS,
009 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
010 * See the License for the specific language governing permissions and limitations under the License.
011 */
012 package org.trails.page;
013
014 import java.beans.MethodDescriptor;
015
016 import org.apache.tapestry.html.BasePage;
017
018
019 /**
020 * @author fus8882
021 * <p/>
022 * TODO To change the template for this generated type comment go to
023 * Window - Preferences - Java - Code Style - Code Templates
024 */
025 public abstract class InvokeMethodPage extends BasePage
026 {
027 public abstract Object getModel();
028
029 public abstract void setModel(Object Model);
030
031 public abstract MethodDescriptor getMethodDescriptor();
032
033 public abstract void setMethodDescriptor(MethodDescriptor MethodDescriptor);
034 }