Esempio n. 1
0
 /*
  * (non-Javadoc)
  *
  * @see org.eclipse.birt.data.engine.aggregation.Aggregation#getParameterDefn()
  */
 public IParameterDefn[] getParameterDefn() {
   return new IParameterDefn[] {
     new ParameterDefn(
         Constants.EXPRESSION_NAME,
         Constants.EXPRESSION_DISPLAY_NAME,
         false,
         true,
         SupportedDataTypes.CALCULATABLE,
         ""), //$NON-NLS-1$
     new ParameterDefn(
         "quart",
         Messages.getString("TotalQuartile.param.quart"),
         false,
         false,
         SupportedDataTypes.CALCULATABLE,
         "") //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
   };
 }
Esempio n. 2
0
 /*
  * (non-Javadoc)
  *
  * @see org.eclipse.birt.data.engine.api.aggregation.IAggrFunction#getDisplayName()
  */
 public String getDisplayName() {
   return Messages.getString("TotalQuartile.displayName"); // $NON-NLS-1$
 }
Esempio n. 3
0
 /*
  * (non-Javadoc)
  *
  * @see org.eclipse.birt.data.engine.api.aggregation.IAggrFunction#getDescription()
  */
 public String getDescription() {
   return Messages.getString("TotalQuartile.description"); // $NON-NLS-1$
 }