|
Java example source code file (A.java)
The A.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 A implements I { @Deprecated public void iDep_aDep_bDep() { } @Deprecated public void iDep_aDep_bUnd() { } @Deprecated public void iDep_aDep_bInh() { } public void iDep_aUnd_bDep() { } // warn public void iDep_aUnd_bUnd() { } // warn public void iDep_aUnd_bInh() { } // warn // public void iDep_aInh_bDep() { } // public void iDep_aInh_bUnd() { } // public void iDep_aInh_bInh() { } @Deprecated public void iUnd_aDep_bDep() { } @Deprecated public void iUnd_aDep_bUnd() { } @Deprecated public void iUnd_aDep_bInh() { } public void iUnd_aUnd_bDep() { } public void iUnd_aUnd_bUnd() { } public void iUnd_aUnd_bInh() { } // 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 A.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.