Java Doc for FormControl.java in  » HTML-Parser » jericho-html » au » id » jericho » lib » html » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » HTML Parser » jericho html » au.id.jericho.lib.html 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   au.id.jericho.lib.html.Segment
      au.id.jericho.lib.html.FormControl

FormControl
abstract public class FormControl extends Segment (Code)
Represents an HTML form control.

A FormControl consists of a single that matches one of the .

The term output element is used to describe the element that is if this form control is in an OutputDocument .

A predefined value control is a form control for which FormControl.getFormControlType() . FormControlType.hasPredefinedValue hasPredefinedValue() returns true. It has a of FormControlType.CHECKBOX CHECKBOX , FormControlType.RADIO RADIO , FormControlType.BUTTON BUTTON , FormControlType.SUBMIT SUBMIT , FormControlType.IMAGE IMAGE , FormControlType.SELECT_SINGLE SELECT_SINGLE or FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE .

A user value control is a form control for which FormControl.getFormControlType() . FormControlType.hasPredefinedValue hasPredefinedValue() returns false. It has a of FormControlType.FILE FILE , FormControlType.HIDDEN HIDDEN , FormControlType.PASSWORD PASSWORD , FormControlType.TEXT TEXT or FormControlType.TEXTAREA TEXTAREA .

The functionality of most significance to users of this class relates to the display characteristics of the output element, manipulated using the FormControl.setDisabled(boolean) and FormControl.setOutputStyle(FormControlOutputStyle) methods.

As a general rule, the operations dealing with the control's submission values are better performed on a FormFields or FormField object, which provide a more intuitive interface by grouping form controls of the same together. The higher abstraction level of these classes means they can automatically ensure that the submission values of their constituent controls are consistent with each other, for example by ensuring that only one FormControlType.RADIO RADIO control with a given name is FormControl.isChecked() checked at a time.

A FormFields object can be directly from a collection of FormControl objects.

FormControl instances are obtained using the Element.getFormControl method or are created automatically with the creation of a FormFields object via the Segment.findFormFields method.
See Also:   FormControlType
See Also:   FormFields
See Also:   FormField


Inner Class :final static class InputFormControl extends FormControl
Inner Class :final static class TextAreaFormControl extends FormControl
Inner Class :final static class RadioCheckboxFormControl extends FormControl
Inner Class :static class SubmitFormControl extends FormControl
Inner Class :final static class ImageSubmitFormControl extends SubmitFormControl
Inner Class :final static class SelectFormControl extends FormControl
Inner Class :final static class ElementContainer

Field Summary
 ElementContainerelementContainer
    
 FormControlTypeformControlType
    
 Stringname
    
 FormControlOutputStyleoutputStyle
    


Method Summary
abstract  voidaddToFormFields(FormFields formFields)
    
public  booleanaddValue(CharSequence value)
     Adds the specified value to this control's submission values *.

NOTE: The FormFields and FormField classes provide a more appropriate abstraction level for the modification of form control submission values. Consider using the FormFields.addValue(String fieldNameCharSequence value) method instead.

This is almost equivalent to FormControl.setValue(CharSequence) , with only the following differences:

FormControlType.CHECKBOX CHECKBOX controls retain their existing submission value instead of becoming unchecked if the specified value does not match the control's .

FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE controls retain their existing submission values, meaning that the control's OPTION elements whose do not match the specified value are not deselected. This is the only type of control that can have multiple submission values within the one control.
Parameters:
  value - the value to add to this control's submission values, must not be null.

abstract  voidaddValuesTo(Collection collection)
    
final public  voidclearValues()
     Clears the control's existing submission values.
static  FormControlconstruct(Element element)
    
static  ListfindAll(Segment segment)
    
final public  MapgetAttributesMap()
     Returns a map of the names and values of this form control's output attributes.
public  StringgetDebugInfo()
    
final  StringgetDisplayValueHTML(CharSequence text, boolean whiteSpaceFormatting)
    
final public  ElementgetElement()
     Returns the representing this form control in the source document.
final public  FormControlTypegetFormControlType()
     Returns the of this form control.
final public  StringgetName()
     Returns the name of the control.
public  IteratorgetOptionElementIterator()
     Returns an iterator over the Tag.OPTION OPTION contained within this control, in order of appearance.
public  FormControlOutputStylegetOutputStyle()
     Returns the current of this form control.
public  StringgetPredefinedValue()
     Returns the initial value of this control if it has a .

Only predefined value controls can return a non-null result. All other control types return null.

FormControlType.CHECKBOX CHECKBOX and FormControlType.RADIO RADIO controls have a guaranteed predefined value determined by the value of its compulsory value attribute.

public  CollectiongetPredefinedValues()
     Returns a collection of all in this control.
public  CollectiongetValues()
     Returns a collection of the control's submission values.
public  booleanisChecked()
     Indicates whether this form control is checked.
final public  booleanisDisabled()
     Indicates whether this form control is disabled.
final  voidreplaceAttributesInOutputDocumentIfModified(OutputDocument outputDocument)
    
abstract  voidreplaceInOutputDocument(OutputDocument outputDocument)
    
final public  voidsetDisabled(boolean disabled)
     Sets whether this form control is disabled.

If the argument supplied to this method is true and the disabled attribute is not already present in the output element, the full XHTML compatible attribute disabled="disabled" is added.

public  voidsetOutputStyle(FormControlOutputStyle outputStyle)
     Sets the of this form control.
abstract public  booleansetValue(CharSequence value)
     Sets the control's submission value *.

NOTE: The FormFields and FormField classes provide a more appropriate abstraction level for the modification of form control submission values. Consider using the FormFields.setValue(String fieldNameCharSequence value) method instead.

The specified value replaces any existing submission values of the control.

The return value indicates whether the control has "accepted" the value. For user value controls, the return value is always true.

For predefined value controls, calling this method does not affect the control's , but instead determines whether the control (or its options) become checked or selected as detailed below:

FormControlType.CHECKBOX CHECKBOX and FormControlType.RADIO RADIO controls become FormControl.isChecked() checked and the method returns true if the specified value matches the control's predefined value (case sensitive), otherwise the control becomes unchecked and the method returns false. Note that any other controls with the same are not unchecked if this control becomes checked, possibly resulting in an invalid state where multiple RADIO controls are checked at the same time. The FormField.setValue(CharSequence) method avoids such problems and its use is recommended over this method.

FormControlType.SELECT_SINGLE SELECT_SINGLE and FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE controls receive the specified value by selecting the option with the matching value and deselecting all others. If none of the options match, all are deselected. The return value of this method indicates whether one of the options matched.

FormControlType.SUBMIT SUBMIT , FormControlType.BUTTON BUTTON , and FormControlType.IMAGE IMAGE controls never have a submission value, so calling this method has no effect and always returns false.
Parameters:
  value - the new submission value of this control, or null to clear the control of all submission values.


Field Detail
elementContainer
ElementContainer elementContainer(Code)



formControlType
FormControlType formControlType(Code)



name
String name(Code)



outputStyle
FormControlOutputStyle outputStyle(Code)





Method Detail
addToFormFields
abstract void addToFormFields(FormFields formFields)(Code)



addValue
public boolean addValue(CharSequence value)(Code)
Adds the specified value to this control's submission values *.

NOTE: The FormFields and FormField classes provide a more appropriate abstraction level for the modification of form control submission values. Consider using the FormFields.addValue(String fieldNameCharSequence value) method instead.

This is almost equivalent to FormControl.setValue(CharSequence) , with only the following differences:

FormControlType.CHECKBOX CHECKBOX controls retain their existing submission value instead of becoming unchecked if the specified value does not match the control's .

FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE controls retain their existing submission values, meaning that the control's OPTION elements whose do not match the specified value are not deselected. This is the only type of control that can have multiple submission values within the one control.
Parameters:
  value - the value to add to this control's submission values, must not be null. true if the control accepts the value, otherwise false.
See Also:   FormFields.addValue(String fieldNameCharSequence value)




addValuesTo
abstract void addValuesTo(Collection collection)(Code)



clearValues
final public void clearValues()(Code)
Clears the control's existing submission values.

This is equivalent to FormControl.setValue(CharSequence) setValue(null) .

NOTE: The FormFields and FormField classes provide a more appropriate abstraction level for the modification of form control submission values.
See Also:   FormFields.clearValues
See Also:   FormField.clearValues




construct
static FormControl construct(Element element)(Code)



findAll
static List findAll(Segment segment)(Code)



getAttributesMap
final public Map getAttributesMap()(Code)
Returns a map of the names and values of this form control's output attributes.

The term output attributes is used in this library to refer to the attributes of a form control's output element.

The map keys are the String attribute names, which should all be in lower case. The map values are the corresponding CharSequence attribute values, with a null value given to an attribute that .

Direct manipulation of the returned map affects the attributes of this form control's output element. It is the responsibility of the user to ensure that all entries added to the map use the correct key and value types, and that all keys (attribute names) are in lower case.

It is recommended that the submission value modification methods are used to modify attributes that affect the submission value of the control rather than manipulating the attributes map directly.

An iteration over the map entries will return the attributes in the same order as they appeared in the source document, or at the end if the attribute was not present in the source document.

The returned attributes only correspond with those of the if the control's display characteristics and submission values have not been modified. a map of the names and values of this form control's output attributes.




getDebugInfo
public String getDebugInfo()(Code)



getDisplayValueHTML
final String getDisplayValueHTML(CharSequence text, boolean whiteSpaceFormatting)(Code)



getElement
final public Element getElement()(Code)
Returns the representing this form control in the source document.

The of this source element should correspond with the output attributes if the display characteristics or submission values have not been modified. the representing this form control in the source document.




getFormControlType
final public FormControlType getFormControlType()(Code)
Returns the of this form control. the of this form control.



getName
final public String getName()(Code)
Returns the name of the control.

The name comes from the value of the name of the , not the itself.

Since a FormField is simply a group of controls with the same name, the terms control name and field name are for the most part synonymous, with only a possible difference in case differentiating them.

In contrast to the FormField.getName method, this method always returns the name using the original case from the source document, regardless of the current setting of the Config.CurrentCompatibilityMode . Config.CompatibilityMode.isFormFieldNameCaseInsensitive FormFieldNameCaseInsensitive property. the name of the control.




getOptionElementIterator
public Iterator getOptionElementIterator()(Code)
Returns an iterator over the Tag.OPTION OPTION contained within this control, in order of appearance.

This method is only relevant to form controls with a of FormControlType.SELECT_SINGLE SELECT_SINGLE or FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE . an iterator over the Tag.OPTION OPTION contained within this control, in order of appearance.
throws:
  UnsupportedOperationException - if the of this control is not FormControlType.SELECT_SINGLE SELECT_SINGLE or FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE.




getOutputStyle
public FormControlOutputStyle getOutputStyle()(Code)
Returns the current of this form control.

This property affects how this form control is displayed if it has been in an OutputDocument . See the documentation of the FormControlOutputStyle class for information on the available output styles.

The default output style for every form control is FormControlOutputStyle.NORMAL . the current of this form control.
See Also:   FormControl.setOutputStyle(FormControlOutputStyle)




getPredefinedValue
public String getPredefinedValue()(Code)
Returns the initial value of this control if it has a .

Only predefined value controls can return a non-null result. All other control types return null.

FormControlType.CHECKBOX CHECKBOX and FormControlType.RADIO RADIO controls have a guaranteed predefined value determined by the value of its compulsory value attribute. If the attribute is not present in the source document, this library assigns the control a default predefined value of "on", consistent with popular browsers.

FormControlType.SUBMIT SUBMIT , FormControlType.BUTTON BUTTON and FormControlType.IMAGE IMAGE controls have an optional predefined value determined by the value of its value attribute. This value is successful only in the control used to submit the form.

FormControlType.SELECT_SINGLE and FormControlType.SELECT_MULTIPLE controls are special cases because they usually contain multiple OPTION elements, each with its own predefined value. In this case the FormControl.getPredefinedValues() method should be used instead, which returns a collection of all the control's predefined values. Attempting to call this method on a SELECT control results in a java.lang.UnsupportedOperationException.

The predefined value of a control is not affected by changes to the submission value of the control. the initial value of this control if it has a , or null if none.




getPredefinedValues
public Collection getPredefinedValues()(Code)
Returns a collection of all in this control.

All objects in the returned collection are of type String, with no null entries.

This method is most useful for SELECT controls since they typically contain multiple predefined values. In other controls it returns a collection with zero or one item based on the output of the FormControl.getPredefinedValue() method, so for efficiency it is recommended to use the FormControl.getPredefinedValue() method instead.

The multiple predefined values of a SELECT control are defined by the OPTION elements within it. Each OPTION element has an initial value determined by the value of its value attribute, or if this attribute is not present, by its text with .

The predefined values of a control are not affected by changes to the submission values of the control. a collection of all in this control, guaranteed not null.
See Also:   FormField.getPredefinedValues




getValues
public Collection getValues()(Code)
Returns a collection of the control's submission values.

All objects in the returned collection are of type CharSequence, with no null entries.

The term submission value is used in this library to refer to the value the control would contribute to the form data set of a submitted form, assuming no modification of the control's current value by the user agent or by end user interaction.

For user value controls, the submission value corresponds to the control's initial value.

The definition of the submission value for each predefined value control type is as follows:

FormControlType.CHECKBOX CHECKBOX and FormControlType.RADIO RADIO controls have a submission value specified by its if it is FormControl.isChecked() checked , otherwise it has no submission value.

FormControlType.SELECT_SINGLE SELECT_SINGLE and FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE controls have submission values specified by the values of the control's selected OPTION elements.

Only a FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE control can have more than one submission value, all other return a collection containing either one value or no values. A FormControlType.SELECT_SINGLE SELECT_SINGLE control only returns multiple submission values if it illegally contains multiple selected options in the source document.

FormControlType.SUBMIT SUBMIT , FormControlType.BUTTON BUTTON , and FormControlType.IMAGE IMAGE controls are only ever successful when they are activated by the user to submit the form. Because the submission value is intended to be a static representation of a control's data without interaction by the user, this library never associates submission values with buttons, so this method always returns an empty collection for these control types.

The submission value(s) of a control can be modified for subsequent output in an OutputDocument using the various submission value modification methods, namely:
FormField.setValue(CharSequence)
FormField.addValue(CharSequence)
FormField.setValues(Collection)
FormField.clearValues
FormFields.setValue(String fieldNameCharSequence value)
FormFields.addValue(String fieldNameCharSequence value)
FormFields.setDataSet(Map)
FormFields.clearValues
FormControl.setValue(CharSequence) FormControl.setValue(CharSequence)
FormControl.addValue(CharSequence) FormControl.addValue(CharSequence)
FormControl.clearValues() FormControl.clearValues()

The values returned by this method reflect any changes made using the submission value modification methods, in contrast to methods found in the Attributes and Attribute classes, which always reflect the source document. a collection of the control's submission values, guaranteed not null.
See Also:   FormControl.getPredefinedValues()




isChecked
public boolean isChecked()(Code)
Indicates whether this form control is checked.

The term checked is used to describe a checkbox or radio button control that is selected, which is the case if the attribute "checked" is present in its output element.

This property is only relevant to form controls with a of FormControlType.CHECKBOX or FormControlType.RADIO , and throws an UnsupportedOperationException for other control types.

Use one of the submission value modification methods to change the value of this property.

If this control is a checkbox, you can set it to checked by calling FormControl.setValue(CharSequence) setValue ( FormControl.getName() ), and set it to unchecked by calling FormControl.clearValues() .

If this control is a radio button, you should use the FormField.setValue(CharSequence) method or one of the other higher level submission value modification methods to set the control to checked, as calling FormControl.setValue(CharSequence) method on this object in the same way as for a checkbox does not automatically uncheck all other radio buttons with the same name. Even calling FormControl.clearValues() on this object to ensure that this radio button is unchecked is not recommended, as it can lead to a situation where all the radio buttons with this name are unchecked. The HTML 4.01 specification of radio buttons recommends against this situation because it is not defined how user agents should handle it, and behaviour differs amongst browsers.

The return value is logically equivalent to FormControl.getAttributesMap() .containsKey("checked"), but using this property may be more efficient in some circumstances. true if this form control is checked, otherwise false.
throws:
  UnsupportedOperationException - if the of this control is not FormControlType.CHECKBOX or FormControlType.RADIO.




isDisabled
final public boolean isDisabled()(Code)
Indicates whether this form control is disabled.

The form control is disabled if the attribute "disabled" is present in its output element.

The return value is is logically equivalent to FormControl.getAttributesMap() .containsKey("disabled"), but using this property may be more efficient in some circumstances. true if this form control is disabled, otherwise false.




replaceAttributesInOutputDocumentIfModified
final void replaceAttributesInOutputDocumentIfModified(OutputDocument outputDocument)(Code)



replaceInOutputDocument
abstract void replaceInOutputDocument(OutputDocument outputDocument)(Code)



setDisabled
final public void setDisabled(boolean disabled)(Code)
Sets whether this form control is disabled.

If the argument supplied to this method is true and the disabled attribute is not already present in the output element, the full XHTML compatible attribute disabled="disabled" is added. If the attribute is already present, it is left unchanged.

If the argument supplied to this method is false, the attribute is removed from the output element.

See the FormControl.isDisabled() method for more information.
Parameters:
  disabled - the new value of this property.




setOutputStyle
public void setOutputStyle(FormControlOutputStyle outputStyle)(Code)
Sets the of this form control.

See the FormControl.getOutputStyle() method for a full description of this property.
Parameters:
  outputStyle - the new of this form control.




setValue
abstract public boolean setValue(CharSequence value)(Code)
Sets the control's submission value *.

NOTE: The FormFields and FormField classes provide a more appropriate abstraction level for the modification of form control submission values. Consider using the FormFields.setValue(String fieldNameCharSequence value) method instead.

The specified value replaces any existing submission values of the control.

The return value indicates whether the control has "accepted" the value. For user value controls, the return value is always true.

For predefined value controls, calling this method does not affect the control's , but instead determines whether the control (or its options) become checked or selected as detailed below:

FormControlType.CHECKBOX CHECKBOX and FormControlType.RADIO RADIO controls become FormControl.isChecked() checked and the method returns true if the specified value matches the control's predefined value (case sensitive), otherwise the control becomes unchecked and the method returns false. Note that any other controls with the same are not unchecked if this control becomes checked, possibly resulting in an invalid state where multiple RADIO controls are checked at the same time. The FormField.setValue(CharSequence) method avoids such problems and its use is recommended over this method.

FormControlType.SELECT_SINGLE SELECT_SINGLE and FormControlType.SELECT_MULTIPLE SELECT_MULTIPLE controls receive the specified value by selecting the option with the matching value and deselecting all others. If none of the options match, all are deselected. The return value of this method indicates whether one of the options matched.

FormControlType.SUBMIT SUBMIT , FormControlType.BUTTON BUTTON , and FormControlType.IMAGE IMAGE controls never have a submission value, so calling this method has no effect and always returns false.
Parameters:
  value - the new submission value of this control, or null to clear the control of all submission values. true if the control accepts the value, otherwise false.
See Also:   FormFields.setValue(String fieldNameCharSequence value)




Fields inherited from au.id.jericho.lib.html.Segment
final int begin(Code)(Java Doc)
List childElements(Code)(Java Doc)
final int end(Code)(Java Doc)
final Source source(Code)(Java Doc)

Methods inherited from au.id.jericho.lib.html.Segment
final static StringBuffer appendCollapseWhiteSpace(StringBuffer sb, CharSequence text)(Code)(Java Doc)
final public char charAt(int index)(Code)(Java Doc)
public int compareTo(Object o)(Code)(Java Doc)
final public boolean encloses(Segment segment)(Code)(Java Doc)
final public boolean encloses(int pos)(Code)(Java Doc)
final public boolean equals(Object object)(Code)(Java Doc)
public String extractText()(Code)(Java Doc)
public String extractText(boolean includeAttributes)(Code)(Java Doc)
public List findAllCharacterReferences()(Code)(Java Doc)
public List findAllElements()(Code)(Java Doc)
public List findAllElements(String name)(Code)(Java Doc)
public List findAllElements(StartTagType startTagType)(Code)(Java Doc)
public List findAllElements(String attributeName, String value, boolean valueCaseSensitive)(Code)(Java Doc)
public List findAllStartTags()(Code)(Java Doc)
public List findAllStartTags(String name)(Code)(Java Doc)
public List findAllStartTags(String attributeName, String value, boolean valueCaseSensitive)(Code)(Java Doc)
public List findAllTags()(Code)(Java Doc)
public List findAllTags(TagType tagType)(Code)(Java Doc)
public List findFormControls()(Code)(Java Doc)
public FormFields findFormFields()(Code)(Java Doc)
final public int getBegin()(Code)(Java Doc)
public List getChildElements()(Code)(Java Doc)
public String getDebugInfo()(Code)(Java Doc)
final public int getEnd()(Code)(Java Doc)
public Renderer getRenderer()(Code)(Java Doc)
public TextExtractor getTextExtractor()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public void ignoreWhenParsing()(Code)(Java Doc)
final public boolean isWhiteSpace()(Code)(Java Doc)
final public static boolean isWhiteSpace(char ch)(Code)(Java Doc)
final public int length()(Code)(Java Doc)
public Attributes parseAttributes()(Code)(Java Doc)
final public CharSequence subSequence(int beginIndex, int endIndex)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.