alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (B.java)

This example Java source code file (B.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

The B.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 B extends A {
    /** @deprecated */ public void iDep_aDep_bDep() { }
                       public void iDep_aDep_bUnd() { } // warn
    //                 public void iDep_aDep_bInh() { }
    /** @deprecated */ public void iDep_aUnd_bDep() { }
                       public void iDep_aUnd_bUnd() { }
    //                 public void iDep_aUnd_bInh() { }
    /** @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 B.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.