[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jakarta-commons-dev
Subject:    cvs commit: jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/io PersonBean.java
From:       rdonkin () apache ! org
Date:       2004-03-31 19:55:46
Message-ID: 20040331195546.59732.qmail () minotaur ! apache ! org
[Download RAW message or body]

rdonkin     2004/03/31 11:55:46

  Added:       betwixt/src/test/org/apache/commons/betwixt/io
                        PersonBean.java
  Log:
  Tests for modified writing API
  
  Revision  Changes    Path
  1.1                  jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/io/PersonBean.java
  
  Index: PersonBean.java
  ===================================================================
  /*
   * Copyright 2004 The Apache Software Foundation.
   * 
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   * 
   *      http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
   
  package org.apache.commons.betwixt.io;
  
  /**
   * @author <a href='http://jakarta.apache.org/'>Jakarta Commons Team</a>
   * @version $Revision: 1.1 $
   */
  public class PersonBean {
      private String forenames;
      private String surname;
      
      public PersonBean() {}
      
      public PersonBean(String forenames, String surname) {
          setSurname(surname);
          setForenames(forenames);
      }
  
      public String getForenames() {
          return forenames;
      }
  
      public String getSurname() {
          return surname;
      }
  
      public void setForenames(String string) {
          forenames = string;
      }
  
      public void setSurname(String string) {
          surname = string;
      }
  
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic