Packagecom.pushtechnology.diffusion.paged
Interfacepublic interface Lines

Since : 4.1

Encapsulates lines on a page.

The lines can be represented as #isString() Strings or #isRecord() Records.



Public Methods
 MethodDefined By
  
isRecord():Boolean
Indicates whether the lines are Record format.
Lines
  
isString():Boolean
Indicates whether the lines are String format.
Lines
  
lines():Array
Returns the lines in String format.
Lines
  
records():Array
Returns the lines in Record format.
Lines
  
toString():String
Lines
Method Detail
isRecord()method
public function isRecord():Boolean

Indicates whether the lines are Record format.

Returns
Boolean — true if the lines are Record format in which case their values can be obtained using the #records() method.
isString()method 
public function isString():Boolean

Indicates whether the lines are String format.

Returns
Boolean — true if the lines are String format in which case their values can be obtained using the #lines() method.
lines()method 
public function lines():Array

Returns the lines in String format.

Returns
Array — the lines as an array of Strings.
records()method 
public function records():Array

Returns the lines in Record format.

Returns
Array — the lines as an array of Records.
toString()method 
public function toString():String

Returns
String