Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.sample.griffin.transform
Class SubSampleBean  view SubSampleBean download SubSampleBean.java

java.lang.Object
  extended bycom.sample.griffin.transform.SampleBean
      extended bycom.sample.griffin.transform.SubSampleBean

public class SubSampleBean
extends SampleBean


Nested Class Summary
 
Nested classes inherited from class com.sample.griffin.transform.SampleBean
SampleBean.MyInternalClass
 
Field Summary
private  java.lang.String subValue1
           
private  java.lang.String subValue2
           
 
Fields inherited from class com.sample.griffin.transform.SampleBean
beanSet, country, id, intId, intList, level, map, myInternal, nameList, province, sampleName, sampleType, secondSampleBean, set, shortId, stringList, treeMap, treeSet
 
Constructor Summary
SubSampleBean()
           
SubSampleBean(java.lang.String subValue1, java.lang.String subValue2, long id2, java.lang.String name2, java.lang.String type2, java.lang.String level2, java.lang.String prov2, java.lang.String country2)
           
 
Method Summary
 java.lang.String getSubValue1()
           
 java.lang.String getSubValue2()
           
 void setSubValue1(java.lang.String value)
           
 void setSubValue2(java.lang.String value)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class com.sample.griffin.transform.SampleBean
getBeanSet, getCountry, getId, getIntId, getIntList, getIntList, getLevel, getMap, getMyInternalClass, getNameList, getNameList, getProvince, getSampleName, getSampleType, getSecondSampleBean, getSet, getShortId, getStringList, getStringList, getTreeMap, getTreeSet, setBeanSet, setCountry, setId, setIntId, setIntList, setIntList, setLevel, setMap, setMyInternalClass, setNameList, setNameList, setProvince, setSampleName, setSampleType, setSecondSampleBean, setSet, setShortId, setStringList, setStringList, setTreeMap, setTreeSet
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

subValue1

private java.lang.String subValue1

subValue2

private java.lang.String subValue2
Constructor Detail

SubSampleBean

public SubSampleBean()

SubSampleBean

public SubSampleBean(java.lang.String subValue1,
                     java.lang.String subValue2,
                     long id2,
                     java.lang.String name2,
                     java.lang.String type2,
                     java.lang.String level2,
                     java.lang.String prov2,
                     java.lang.String country2)
Method Detail

setSubValue1

public void setSubValue1(java.lang.String value)

getSubValue1

public java.lang.String getSubValue1()

setSubValue2

public void setSubValue2(java.lang.String value)

getSubValue2

public java.lang.String getSubValue2()

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).

Overrides:
toString in class SampleBean