ProviderImpl1.java revision 3792:d516975e8110
172132Ssemenu/*
272132Ssemenu * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
372132Ssemenu * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
472132Ssemenu *
572132Ssemenu * This code is free software; you can redistribute it and/or modify it
672132Ssemenu * under the terms of the GNU General Public License version 2 only, as
772132Ssemenu * published by the Free Software Foundation.
872132Ssemenu *
972132Ssemenu * This code is distributed in the hope that it will be useful, but WITHOUT
1072132Ssemenu * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1172132Ssemenu * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1272132Ssemenu * version 2 for more details (a copy is included in the LICENSE file that
1372132Ssemenu * accompanied this code).
1472132Ssemenu *
1572132Ssemenu * You should have received a copy of the GNU General Public License version
1672132Ssemenu * 2 along with this work; if not, write to the Free Software Foundation,
1772132Ssemenu * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1872132Ssemenu *
1972132Ssemenu * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2072132Ssemenu * or visit www.oracle.com if you need additional information or have any
2172132Ssemenu * questions.
2272132Ssemenu */
2372132Ssemenu
2472132Ssemenupackage q;
2572132Ssemenu
2672132Ssemenuimport java.io.*;
2772132Ssemenuimport java.util.spi.ToolProvider;
2872132Ssemenu
2972132Ssemenupublic class ProviderImpl1 implements ToolProvider {
30119418Sobrien    public String name() {
31139749Simp        return "provider1";
3272132Ssemenu    }
3372132Ssemenu
3472132Ssemenu    public int run(PrintWriter out, PrintWriter err, String... args) {
3572132Ssemenu        return 0;
3672132Ssemenu    }
3772132Ssemenu}
3872132Ssemenu