|
Java example source code file (B2.java)
The B2.java Java example source code/* /nodynamiccopyright/ */ // combinations of methods defined in an interface // and overridden in subtypes // class should compile with deprecation warnings as shown abstract class B2 extends A implements I { /** @deprecated */ public void iDep_aDep_bDep() { } public void iDep_aDep_bUnd() { } // warn x 2, because of I and A // public void iDep_aDep_bInh() { } /** @deprecated */ public void iDep_aUnd_bDep() { } public void iDep_aUnd_bUnd() { } // warn // public void iDep_aUnd_bInh() { } // warn /** @deprecated */ public void iDep_aInh_bDep() { } public void iDep_aInh_bUnd() { } // warn // public void iDep_aInh_bInh() { } /** @deprecated */ public void iUnd_aDep_bDep() { } public void iUnd_aDep_bUnd() { } // warn // public void iUnd_aDep_bInh() { } /** @deprecated */ public void iUnd_aUnd_bDep() { } public void iUnd_aUnd_bUnd() { } // public void iUnd_aUnd_bInh() { } /** @deprecated */ public void iUnd_aInh_bDep() { } public void iUnd_aInh_bUnd() { } // public void iUnd_aInh_bInh() { } } Other Java examples (source code examples)Here is a short list of links related to this Java B2.java source code file: |
... 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.