ProcessInfoGatherer.java revision 1870:4aa2e64eff30
1227825Stheraven/*
2227825Stheraven * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3227825Stheraven * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4353358Sdim *
5353358Sdim * This code is free software; you can redistribute it and/or modify it
6353358Sdim * under the terms of the GNU General Public License version 2 only, as
7227825Stheraven * published by the Free Software Foundation.
8227825Stheraven *
9227825Stheraven * This code is distributed in the hope that it will be useful, but WITHOUT
10227825Stheraven * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11227825Stheraven * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12227825Stheraven * version 2 for more details (a copy is included in the LICENSE file that
13227825Stheraven * accompanied this code).
14227825Stheraven *
15227825Stheraven * You should have received a copy of the GNU General Public License version
16227825Stheraven * 2 along with this work; if not, write to the Free Software Foundation,
17227825Stheraven * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18227825Stheraven *
19227825Stheraven * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20227825Stheraven * or visit www.oracle.com if you need additional information or have any
21227825Stheraven * questions.
22227825Stheraven */
23321369Sdim
24321369Sdimpackage jdk.test.failurehandler;
25321369Sdim
26321369Sdimpublic interface ProcessInfoGatherer {
27227825Stheraven    void gatherProcessInfo(HtmlSection section, long pid);
28227825Stheraven}
29232924Stheraven