All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class examples.mo.Simple.Simple

java.lang.Object
   |
   +----examples.mo.Simple.Simple

public class Simple
extends Object
implements Serializable
Very simple definition of a m-bean.
The m-bean shows how to: The object has two properties:


Constructor Index

 o Simple()

Method Index

 o getNbChanges()
Getter for the "NbChanges" property.
 o getState()
Getter for the "State" property.
 o performReset()
Resetter for the "NbChanges" property.
 o setState(String)
Setter for the "State" property.

Constructors

 o Simple
 public Simple()

Methods

 o getState
 public String getState()
Getter for the "State" property. The method is compliant with the Bean design pattern.

Returns:
the current value of the "State" property.
 o setState
 public void setState(String s)
Setter for the "State" property. The method is compliant with the Bean design pattern.

Parameters:
s - the new value of the property.
 o getNbChanges
 public Integer getNbChanges()
Getter for the "NbChanges" property. The method is compliant with the Bean design pattern.

Returns:
the current value of the "NbChanges" property.
 o performReset
 public void performReset()
Resetter for the "NbChanges" property.


All Packages  Class Hierarchy  This Package  Previous  Next  Index