FilterChainProvider.java revision 220:30369db7f5d2
1241519Sattilio/*
2241519Sattilio * Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
3241519Sattilio * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4241519Sattilio *
5241519Sattilio * This code is free software; you can redistribute it and/or modify it
6241519Sattilio * under the terms of the GNU General Public License version 2 only, as
7241519Sattilio * published by the Free Software Foundation.
8241519Sattilio *
9241519Sattilio * This code is distributed in the hope that it will be useful, but WITHOUT
10241519Sattilio * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11241519Sattilio * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12241519Sattilio * version 2 for more details (a copy is included in the LICENSE file that
13241519Sattilio * accompanied this code).
14241519Sattilio *
15241519Sattilio * You should have received a copy of the GNU General Public License version
16241519Sattilio * 2 along with this work; if not, write to the Free Software Foundation,
17241519Sattilio * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18241519Sattilio *
19241519Sattilio * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20241519Sattilio * CA 95054 USA or visit www.sun.com if you need additional information or
21241519Sattilio * have any questions.
22241519Sattilio *
23241519Sattilio */
24241519Sattiliopackage com.sun.hotspot.igv.filter;
25241519Sattilio
26241519Sattilio/**
27241519Sattilio *
28241519Sattilio * @author Thomas Wuerthinger
29241519Sattilio */
30241519Sattiliopublic interface FilterChainProvider {
31241519Sattilio
32241519Sattilio    public FilterChain getFilterChain();
33241519Sattilio
34241519Sattilio    public FilterChain getSequence();
35241519Sattilio}
36241519Sattilio