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

/*
 * BadBeanHidden.java
 *
 * Created on March 7, 2002, 3:27 PM
 */

package org.openide.nodes;

import java.beans.*;

/**
 *
 * @author  phrebejk
 */
public class Bean21341Hidden extends Object implements java.io.Serializable {
    
    /** Holds value of property indexedProperty. */
    private String[] indexedProperty;    
    
    /** Creates new BadBeanHidden */
    public Bean21341Hidden() {
        
    }
    
    /** Indexed getter for property indexedProperty.
     * @param index Index of the property.
     * @return Value of the property at index.
     */
    public String getIndexedProperty(int index) {
        return this.indexedProperty[index];
    }    
    
    /** Getter for property karel.
     * @return Value of property karel.
     */
    public int getKarel() {
        return 3;
    }
    
    /** Setter for property karel.
     * @param karel New value of property karel.
     */
    public void setKarel(int karel) {
    }
    
    /** Indexed setter for property indexedProperty.
     * @param index Index of the property.
     * @param indexedProperty New value of the property at index.
     
    public void setIndexedProperty(int index, String indexedProperty) {
        this.indexedProperty[index] = indexedProperty;
    }
    */    
    
}
... 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.