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

/*
 * TestBean.java
 *
 * Created on 22. leden 2004, 14:13
 */

package test;

/**
 *
 * @author  lm97939
 */
public class TestBean {
    
    /**
     * Holds value of property stringProperty.
     */
    private String stringProperty;
    
    /**
     * Holds value of property intProperty.
     */
    private int intProperty;
    
    /** Creates a new instance of TestBean */
    public TestBean() {
    }
    
    /**
     * Getter for property stringProperty.
     * @return Value of property stringProperty.
     */
    public String getStringProperty() {
        return this.stringProperty;
    }
    
    /**
     * Setter for property stringProperty.
     * @param stringProperty New value of property stringProperty.
     */
    public void setStringProperty(String stringProperty) {
        this.stringProperty = stringProperty;
    }
    
    /**
     * Getter for property intProperty.
     * @return Value of property intProperty.
     */
    public int getIntProperty() {
        return this.intProperty;
    }
    
    /**
     * Setter for property intProperty.
     * @param intProperty New value of property intProperty.
     */
    public void setIntProperty(int intProperty) {
        this.intProperty = intProperty;
    }
    
    public int add(int x) {
        return getIntProperty() + x ;
    }
    
}
... 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.