InvalidFormField

Inheritance: java.lang.Object

public final class InvalidFormField

Represents the update of invalid form field names during the FormFieldManager.FixInvalidFormFieldNames operation.

Constructors

Constructor Description
InvalidFormField(String name) Initializes a new instance of the InvalidFormField class with the specified name.

Methods

Method Description
getName() Gets the original name of the form field that cannot be modified outside FormFieldManager .
getFixedName() Gets or sets the new name for the form field after repair.
setFixedName(String value) Gets or sets the new name for the form field after repair.

InvalidFormField(String name)

public InvalidFormField(String name)

Initializes a new instance of the InvalidFormField class with the specified name.

Parameters:

Parameter Type Description
name java.lang.String The original name of the form field.

getName()

public final String getName()

Gets the original name of the form field that cannot be modified outside FormFieldManager .

Returns: java.lang.String

getFixedName()

public final String getFixedName()

Gets or sets the new name for the form field after repair. This name removes duplicate unique identifiers with other form fields and sets a unique bookmark name.


FixedName = string.Format("{0}_fixed", name) // as default value.

Returns: java.lang.String

setFixedName(String value)

public final void setFixedName(String value)

Gets or sets the new name for the form field after repair. This name removes duplicate unique identifiers with other form fields and sets a unique bookmark name.


FixedName = string.Format("{0}_fixed", name) // as default value.

Parameters:

Parameter Type Description
value java.lang.String