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

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

package data.open;

public class Class2 {
    
    public Class2() {}

    public void method_public_void () {}
    public void method_public_void_args (String[] args) {}
    public static void method_public_static_void () {}
    public final void method_public_final_void () {}
    public static final void method_public_static_final_void () {}
    
    protected void method_protected_void () {}
    protected void method_protected_void_args (String[] args) {}
    protected static void method_protected_static_void () {}
    protected final void method_protected_final_void () {}
    protected static final void method_protected_static_final_void () {}
    
    void method_default_void () {}
    void method_default_void_args (String[] args) {}
    static void method_default_static_void () {}
    final void method_default_final_void () {}
    static final void method_default_static_final_void () {}
    
    private void method_private_void () {}
    private void method_private_void_args (String[] args) {}
    private static void method_private_static_void () {}
    private final void method_private_final_void () {}
    private static final void method_private_static_final_void () {}
    
    public int public_field;
    public static int public_static_field;
    
}
... 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.