jet.webreport
Interface ParametersInfo


public interface ParametersInfo

An interface to get parameters of a report.


Method Summary
 java.util.Iterator getAllParameters()
          Returns all Parameter in a Iterator.
 java.lang.String getCountry()
          Gets the country that the parameter uses.
 java.lang.String getLanguage()
          Gets the language that the parameter uses.
 Parameter getParameter(java.lang.String name)
          Gets Parameter object with the specified parameter name.
 java.lang.String[] getParameterNames()
          Returns all parameter names in a string array.
 

Method Detail

getAllParameters

java.util.Iterator getAllParameters()
Returns all Parameter in a Iterator.

Returns:
the Iterator
See Also:
Parameter

getParameterNames

java.lang.String[] getParameterNames()
Returns all parameter names in a string array.

Returns:
a string array with all names.
See Also:
Parameter

getParameter

Parameter getParameter(java.lang.String name)
Gets Parameter object with the specified parameter name.

Parameters:
name - the parameter name.
Returns:
the Parameter
See Also:
Parameter

getLanguage

java.lang.String getLanguage()
Gets the language that the parameter uses.

Returns:
the language.

getCountry

java.lang.String getCountry()
Gets the country that the parameter uses.

Returns:
the country.