|
What this is
Other links
The source code/* * C.java * * Created on May 24, 2004, 1:55 PM */ package abc; /** * * @author mg105252 */ public class C extends B implements abc.def.ghi.I { private int number = 0; public String text = "text"; protected boolean test = false; /** Creates a new instance of C */ public C() { } public C(abc.def.ghi.I i) { test = true; } public String getState() { return "idle"; } public Object methodA() { return null; } private void methodA(int i) { } protected void methodA(int i, String text) { } } |
... 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.