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

Quick Search    Search Deep

com.sample.addressbook.controller.contact
Class ContactSearchController.ContactSearchForm  view ContactSearchController.ContactSearchForm download ContactSearchController.ContactSearchForm.java

java.lang.Object
  extended bycom.sample.addressbook.controller.contact.ContactSearchController.ContactSearchForm
Enclosing class:
ContactSearchController

public static class ContactSearchController.ContactSearchForm
extends java.lang.Object


Field Summary
private  boolean all
           
private  java.lang.String firstname
           
private  java.lang.String lastname
           
 
Constructor Summary
ContactSearchController.ContactSearchForm()
           
 
Method Summary
 boolean getAll()
           
 java.lang.String getFirstname()
           
 java.lang.String getLastname()
           
 java.util.HashMap prepareQueryValues()
           
 void setAll(boolean value)
           
 void setFirstname(java.lang.String value)
           
 void setLastname(java.lang.String value)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

firstname

private java.lang.String firstname

lastname

private java.lang.String lastname

all

private boolean all
Constructor Detail

ContactSearchController.ContactSearchForm

public ContactSearchController.ContactSearchForm()
Method Detail

prepareQueryValues

public java.util.HashMap prepareQueryValues()

getFirstname

public java.lang.String getFirstname()

setFirstname

public void setFirstname(java.lang.String value)

getLastname

public java.lang.String getLastname()

setLastname

public void setLastname(java.lang.String value)

getAll

public boolean getAll()

setAll

public void setAll(boolean value)

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()).