bpatel@1468: /* bpatel@1468: * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. bpatel@1468: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. bpatel@1468: * bpatel@1468: * This code is free software; you can redistribute it and/or modify it bpatel@1468: * under the terms of the GNU General Public License version 2 only, as bpatel@1468: * published by the Free Software Foundation. bpatel@1468: * bpatel@1468: * This code is distributed in the hope that it will be useful, but WITHOUT bpatel@1468: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or bpatel@1468: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License bpatel@1468: * version 2 for more details (a copy is included in the LICENSE file that bpatel@1468: * accompanied this code). bpatel@1468: * bpatel@1468: * You should have received a copy of the GNU General Public License version bpatel@1468: * 2 along with this work; if not, write to the Free Software Foundation, bpatel@1468: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. bpatel@1468: * bpatel@1468: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA bpatel@1468: * or visit www.oracle.com if you need additional information or have any bpatel@1468: * questions. bpatel@1468: */ bpatel@1468: bpatel@1468: package pkg; bpatel@1468: bpatel@1468: public interface A { bpatel@1468: bpatel@1468: public void method1(); bpatel@1468: bpatel@1468: public default void defaultMethod() { } bpatel@1468: }