home *** CD-ROM | disk | FTP | other *** search
- package org.apache.cocoon.forms.samples.bindings;
-
- public class LenientBaseBean {
- protected String breakingField;
- protected String surviveField;
-
- protected LenientBaseBean(String initVal) {
- this.breakingField = initVal;
- this.surviveField = initVal;
- }
-
- public String toString() {
- String className = this.getClass().getName();
- String state = "[breakingField=" + this.breakingField + "|surviveField=" + this.surviveField + "]";
- return className + state;
- }
- }
-