|
What this is
Other links
The source codepackage p; class A1 implements A{ /** * @deprecated Use {@link #m(boolean,int)} instead */ public void m(int i, boolean b){ m(b, i); } public void m(boolean b, int i){ } private void foo(){ m(true, 2); } } class B extends A1{ /** * @deprecated Use {@link #m(boolean,int)} instead */ public void m(int j, boolean b){ m(b, j); } public void m(boolean b, int j){ m(false, 6); super.m(true, 4); } } interface A { /** * @deprecated Use {@link #m(boolean,int)} instead */ public void m(int i, boolean b); public void m(boolean b, int i); } |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.