com.businessobjects.enterprise.crystalreport
Interface Hyperlinks


public interface Hyperlinks

A collection of ReportHyperlink objects.


Nested Class Summary
static class Hyperlinks.Factory
          A class with methods for creating instances of the Hyperlinks type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 ReportHyperlink addNewHyperlink()
          Appends and returns a new empty ReportHyperlink object (as xml) as the last element of the array.
 ReportHyperlink[] getHyperlinkArray()
          Returns the array of ReportHyperlink objects.
 ReportHyperlink getHyperlinkArray(int i)
          Returns the ReportHyperlink object at the specified index position.
 ReportHyperlink insertNewHyperlink(int i)
          Inserts and returns a new empty ReportHyperlink object at a specified index.
 void removeHyperlink(int i)
          Removes the Hyperlink element at the specified index position.
 void setHyperlinkArray(int i, ReportHyperlink hyperlink)
          Sets the ReportHyperlink object at the specified index position.
 void setHyperlinkArray(ReportHyperlink[] hyperlinkArray)
          Sets the array of ReportHyperlink objects.
 int sizeOfHyperlinkArray()
          Returns the size of the HyperlinkArray array.
 

Field Detail

type

static final org.apache.xmlbeans.SchemaType type
Internal Use Only.

Method Detail

getHyperlinkArray

ReportHyperlink[] getHyperlinkArray()

Returns the array of ReportHyperlink objects.

Returns:
The array of ReportHyperlink objects.

getHyperlinkArray

ReportHyperlink getHyperlinkArray(int i)

Returns the ReportHyperlink object at the specified index position.

Parameters:
i - The index position.
Returns:
The ReportHyperlink object.

sizeOfHyperlinkArray

int sizeOfHyperlinkArray()
Returns the size of the HyperlinkArray array.

Returns:
The size of the array.

setHyperlinkArray

void setHyperlinkArray(ReportHyperlink[] hyperlinkArray)

Sets the array of ReportHyperlink objects.

Parameters:
hyperlinkArray - The array of ReportHyperlink objects.

setHyperlinkArray

void setHyperlinkArray(int i,
                       ReportHyperlink hyperlink)

Sets the ReportHyperlink object at the specified index position.

Parameters:
i - The index position.
hyperlink - The ReportHyperlink object.

insertNewHyperlink

ReportHyperlink insertNewHyperlink(int i)
Inserts and returns a new empty ReportHyperlink object at a specified index.

Parameters:
i - The index position to insert the object.
Returns:
The new ReportHyperlink object.

addNewHyperlink

ReportHyperlink addNewHyperlink()
Appends and returns a new empty ReportHyperlink object (as xml) as the last element of the array.

Returns:
The new HyperlinkResolve object.

removeHyperlink

void removeHyperlink(int i)
Removes the Hyperlink element at the specified index position.

Parameters:
i - The index position to remove the Hyperlink element.