home *** CD-ROM | disk | FTP | other *** search
- package org.apache.cocoon.samples.betwixt;
-
- public class TestBean {
- private String name;
- private String scope;
-
- public TestBean() {
- }
-
- public TestBean(String newName, String newScope) {
- this.name = newName;
- this.scope = newScope;
- }
-
- public String getName() {
- return this.name;
- }
-
- public void setName(String newName) {
- this.name = newName;
- }
-
- public void setScope(String newScope) {
- this.scope = newScope;
- }
-
- public String getScope() {
- return this.scope;
- }
- }
-