Impl.java revision 3792:d516975e8110
146686Sbrian/*
246686Sbrian * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
346686Sbrian * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
446686Sbrian *
546686Sbrian * This code is free software; you can redistribute it and/or modify it
646686Sbrian * under the terms of the GNU General Public License version 2 only, as
746686Sbrian * published by the Free Software Foundation.
846686Sbrian *
946686Sbrian * This code is distributed in the hope that it will be useful, but WITHOUT
1046686Sbrian * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1146686Sbrian * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1246686Sbrian * version 2 for more details (a copy is included in the LICENSE file that
1346686Sbrian * accompanied this code).
1446686Sbrian *
1546686Sbrian * You should have received a copy of the GNU General Public License version
1646686Sbrian * 2 along with this work; if not, write to the Free Software Foundation,
1746686Sbrian * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1846686Sbrian *
1946686Sbrian * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2046686Sbrian * or visit www.oracle.com if you need additional information or have any
2146686Sbrian * questions.
2246686Sbrian */
2346686Sbrian
2446686Sbrianpackage impl;
2546686Sbrian
2646686Sbrianpublic class Impl {
2746686Sbrian    public static Impl provider() {
2846686Sbrian        return null;
2946686Sbrian    }
30}
31