Clover coverage report - JFox Service-Oriented Application Framework - 1.0-RC2
Coverage timestamp: 星期四 十二月 15 2005 11:58:01 CST
file stats: LOC: 150   Methods: 10
NCLOC: 51   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
Parameter.java - 0% 0% 0%
coverage
 1   
 /**
 2   
  * @(#)Parameter.java
 3   
  * 
 4   
  * JFoxSOAF, Service-Oriented Application Framework
 5   
  * 
 6   
  * Copyright(c) JFoxSOAF Team
 7   
  * 
 8   
  * Licensed under the GNU LGPL, Version 2.1 (the "License"); 
 9   
  * you may not use this file except in compliance with the License. 
 10   
  * You may obtain a copy of the License at  
 11   
  * 
 12   
  * http://www.gnu.org/copyleft/lesser.html
 13   
  * 
 14   
  * Unless required by applicable law or agreed to in writing, software
 15   
  * distributed under the License is distributed on an "AS IS" BASIS, 
 16   
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
 17   
  * See the License for the specific language governing permissions and 
 18   
  * limitations under the License. 
 19   
  * 
 20   
  * For more information, please visit:
 21   
  * http://www.jfox.cn/confluence/display/JFoxSOAF/Home
 22   
  * http://www.huihoo.org/jfox/jfoxsoaf
 23   
  */
 24   
 
 25   
 package org.huihoo.jfox.soaf.schema.service;
 26   
 
 27   
 import org.exolab.castor.xml.Marshaller;
 28   
 import org.exolab.castor.xml.Unmarshaller;
 29   
 
 30   
 /**
 31   
  * <p>
 32   
  * Class Parameter.
 33   
  * </p>
 34   
  * 
 35   
  * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
 36   
  * @version $Revision: 1.7 $ $Date: 2005/05/22 06:48:07 $
 37   
  * @version Revision: 1.0
 38   
  */
 39   
 
 40   
 public class Parameter implements java.io.Serializable {
 41   
 
 42   
     /**
 43   
      * Field _name
 44   
      */
 45   
     private java.lang.String _name;
 46   
 
 47   
     /**
 48   
      * Field _value
 49   
      */
 50   
     private java.lang.String _value;
 51   
 
 52  0
     public Parameter() {
 53  0
         super();
 54   
     }
 55   
 
 56   
     /**
 57   
      * Method getNameReturns the value of field 'name'.
 58   
      * 
 59   
      * @return the value of field 'name'.
 60   
      */
 61  0
     public java.lang.String getName() {
 62  0
         return this._name;
 63   
     }
 64   
 
 65   
     /**
 66   
      * Method getValueReturns the value of field 'value'.
 67   
      * 
 68   
      * @return the value of field 'value'.
 69   
      */
 70  0
     public java.lang.String getValue() {
 71  0
         return this._value;
 72   
     }
 73   
 
 74   
     /**
 75   
      * Method isValid
 76   
      */
 77  0
     public boolean isValid() {
 78  0
         try {
 79  0
             validate();
 80   
         } catch (org.exolab.castor.xml.ValidationException vex) {
 81  0
             return false;
 82   
         }
 83  0
         return true;
 84   
     }
 85   
 
 86   
     /**
 87   
      * Method marshal
 88   
      * 
 89   
      * @param out
 90   
      */
 91  0
     public void marshal(java.io.Writer out)
 92   
             throws org.exolab.castor.xml.MarshalException,
 93   
             org.exolab.castor.xml.ValidationException {
 94   
 
 95  0
         Marshaller.marshal(this, out);
 96   
     }
 97   
 
 98   
     /**
 99   
      * Method marshal
 100   
      * 
 101   
      * @param handler
 102   
      */
 103  0
     public void marshal(org.xml.sax.ContentHandler handler)
 104   
             throws java.io.IOException, org.exolab.castor.xml.MarshalException,
 105   
             org.exolab.castor.xml.ValidationException {
 106   
 
 107  0
         Marshaller.marshal(this, handler);
 108   
     }
 109   
 
 110   
     /**
 111   
      * Method setNameSets the value of field 'name'.
 112   
      * 
 113   
      * @param name the value of field 'name'.
 114   
      */
 115  0
     public void setName(java.lang.String name) {
 116  0
         this._name = name;
 117   
     }
 118   
 
 119   
     /**
 120   
      * Method setValueSets the value of field 'value'.
 121   
      * 
 122   
      * @param value the value of field 'value'.
 123   
      */
 124  0
     public void setValue(java.lang.String value) {
 125  0
         this._value = value;
 126   
     }
 127   
 
 128   
     /**
 129   
      * Method unmarshal
 130   
      * 
 131   
      * @param reader
 132   
      */
 133  0
     public static org.huihoo.jfox.soaf.schema.service.Parameter unmarshal(
 134   
             java.io.Reader reader)
 135   
             throws org.exolab.castor.xml.MarshalException,
 136   
             org.exolab.castor.xml.ValidationException {
 137  0
         return (org.huihoo.jfox.soaf.schema.service.Parameter) Unmarshaller
 138   
                 .unmarshal(org.huihoo.jfox.soaf.schema.service.Parameter.class,
 139   
                         reader);
 140   
     }
 141   
 
 142   
     /**
 143   
      * Method validate
 144   
      */
 145  0
     public void validate() throws org.exolab.castor.xml.ValidationException {
 146  0
         org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
 147  0
         validator.validate(this);
 148   
     }
 149   
 
 150   
 }