add method

ParamInteger add(
  1. int val
)

Implementation

ParamInteger add( int val ){
	_val += val;
	return this;
}