Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PropertyManipulator

PropertyManipulator is a reflection based ValueManipulator implementation based on the JavaBean property name conventions.

Hierarchy

  • PropertyManipulator

Implements

Index

Constructors

Properties

Methods

Constructors

constructor

  • Construct a PropertyManipulator for the specified property name.

    This constructor assumes that the corresponding property getter will have a name of either ("get" + sName) or ("is + sName) and the corresponding property setter's name will be ("set + sName).

    Parameters

    • propertyName: string

      a property name

    • Default value useIs: boolean = false

      if true, the getter method will be prefixed with "is" rather than "get"

    Returns PropertyManipulator

Properties

Protected @class

@class: string

Server-side PropertyManipulator implementation type identifier

Protected name

name: string

The property name, never null.

useIsPrefix

useIsPrefix: boolean

The getter prefix flag.

Methods

getExtractor

getUpdater