Action.java revision 1870:4aa2e64eff30
144743Smarkm/*
244743Smarkm * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
344743Smarkm * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
444743Smarkm *
544743Smarkm * This code is free software; you can redistribute it and/or modify it
644743Smarkm * under the terms of the GNU General Public License version 2 only, as
744743Smarkm * published by the Free Software Foundation.
844743Smarkm *
9277281Spfg * This code is distributed in the hope that it will be useful, but WITHOUT
10277281Spfg * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11277281Spfg * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1244743Smarkm * version 2 for more details (a copy is included in the LICENSE file that
1344743Smarkm * accompanied this code).
14277281Spfg *
15277281Spfg * You should have received a copy of the GNU General Public License version
16277281Spfg * 2 along with this work; if not, write to the Free Software Foundation,
1744743Smarkm * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1844743Smarkm *
1944743Smarkm * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24package jdk.test.failurehandler.action;
25
26import jdk.test.failurehandler.HtmlSection;
27
28public interface Action {
29    boolean isJavaOnly();
30    HtmlSection getSection(HtmlSection section);
31
32    ActionParameters getParameters();
33}
34