Package it.eng.spagobi.tools.dataset.common.decorator

Source Code of it.eng.spagobi.tools.dataset.common.decorator.DisplaySizeDecorator

/**

SpagoBI - The Business Intelligence Free Platform

Copyright (C) 2005-2009 Engineering Ingegneria Informatica S.p.A.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

**/
package it.eng.spagobi.tools.dataset.common.decorator;

import it.eng.spagobi.tools.dataset.common.datastore.IDataStore;
import it.eng.spagobi.tools.dataset.common.datastore.IDataStoreMetaData;
import it.eng.spagobi.tools.dataset.common.datastore.IField;
import it.eng.spagobi.tools.dataset.common.datastore.IFieldMetaData;
import it.eng.spagobi.tools.dataset.common.datastore.IRecord;

/**
* @author Andrea Gioia (andrea.gioia@eng.it)
*/
public class DisplaySizeDecorator extends AbstractDataStoreDecorator {

  public static final String PROPERTY_NAME = "width";
 
  public DisplaySizeDecorator(){}

  public DisplaySizeDecorator(IDataStoreDecorator nextDecorator) {
    this.setNextDecoratr(nextDecorator);
  }
 
  void doUpdateDecoration(IDataStore dataStore, IRecord record) {
    IDataStoreMetaData dataStoreMeta = dataStore.getMetaData();
    int filedNo = dataStoreMeta.getFieldCount();
   
    for(int i = 0; i < filedNo; i++) {
      IFieldMetaData fieldMeta = dataStoreMeta.getFieldMeta(i);
      IField field = (IField)record.getFieldAt(i);
     
      Integer w = (Integer)fieldMeta.getProperty( PROPERTY_NAME );
      if(w == null) {
        //fieldMeta.setProperty(PROPERTY_NAME, new Integer(0));
        w = new Integer(0);
      }
      Object value = field.getValue();
      String valueStr = "" + value;
      int displaySize = (field.getValue() == null? 0: valueStr.length());
      if(w.intValue() < displaySize) w = new Integer(displaySize);
      fieldMeta.setProperty(PROPERTY_NAME, w);
    }
  }

}
TOP

Related Classes of it.eng.spagobi.tools.dataset.common.decorator.DisplaySizeDecorator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.