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

/*
 * BeanB.java
 *
 * Created on May 20, 2004, 2:14 PM
 */

package org.netbeans.tests.examples.packb;

import java.util.Vector;
import org.netbeans.tests.examples.packa.Bean;
import org.netbeans.tests.examples.packa.Testable;

import org.netbeans.tests.examples.packc.Makable;

/**
 *
 * @author  eh103527
 */
public class BeanB extends Bean implements org.netbeans.tests.examples.packc.Makable {
    
    int index=0;
    
    Vector beansa=new Vector();
    
    /** Creates a new instance of BeanB */
    public BeanB() {
        refID=473542*Makable.CODE;
    }
    
    public void addBeanA(BeanA ba) {
        beansa.add(ba);
        ((Testable)new BeansD.BeanDA("1")).test();
        new BeansD.BeanDA("1").test();
    }
    
    public BeanA getBeanA(int indx) {
        return (BeanA)(beansa.get(indx));
    }
    
    public Bean[] getBeans() {
        return (Bean[])(beansa.toArray(new Bean[beansa.size()]));
    }
    
    /**
     * Getter for property index.
     * @return Value of property index.
     */
    public int getIndex() {
        return index;
    }
    
    /**
     * Setter for property index.
     * @param index New value of property index.
     */
    public void setIndex(int index) {
        this.index = index;
    }
    
    public Object[] finish() {
        return new Object[CODE];
    }
    
    public Makable prepare() {
        System.out.println("do");
        BeanC c=new BeanC();
        c.prepare().make(10, "run", this);
        ((Bean)c).abc();
        return this;
    }
    
    public void make(int index, java.lang.String s, org.netbeans.tests.examples.packa.Bean bean) {
    }
    
}
... 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.