blob: 985bb34bc26bca3b3d2398520af4c5d953a7215f [file] [log] [blame]
// Copyright 2005 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry.workbench.fields;
import org.apache.tapestry.annotations.InjectState;
import org.apache.tapestry.html.BasePage;
import org.apache.tapestry.workbench.Visit;
/**
* @author Howard Lewis Ship
* @since 4.0
*/
public abstract class FieldsResults extends BasePage
{
/**
* Flag indicating whether the form was submitted via a link.
*/
public abstract void setByLink(boolean byLink);
@InjectState("session-data")
public abstract Visit getVisit();
}