Hi,
 
Is it possible to remove final keyword from StringResourceModel.getParameters(). I know I could do this "ognl"-way, but I'd prefer the direct way:

public NavigatorLabel(String id, final DataView dataView, final Component page) {
  super(id, new StringResourceModel("navigatorLabel", page, null, null) {
   private static final long serialVersionUID = 1L;

   @Override
   protected Object[] getParameters() {
    return rowInfo(dataView);
   }
  });
}

I see no harm of dis-finalizing this.

/arto

Reply via email to