Package com.exedosoft.plat.ui.jquery.form

Source Code of com.exedosoft.plat.ui.jquery.form.DOValueLong

package com.exedosoft.plat.ui.jquery.form;

import com.exedosoft.plat.ui.DOFormModel;
import com.exedosoft.plat.ui.DOIModel;
import com.exedosoft.plat.ui.DOIView;

public class DOValueLong implements DOIView {

  public String getHtmlCode(DOIModel aModel) {
   
    DOFormModel fm = (DOFormModel) aModel;
    if (fm.getValue() != null) {
      String longValue = fm.getValue();
      if(longValue.indexOf(".")>-1){
        longValue = longValue.substring(0,longValue.indexOf("."));
      }
      return longValue;
    } else {
      return " ";
    }
  }

  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub

  }

}
TOP

Related Classes of com.exedosoft.plat.ui.jquery.form.DOValueLong

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.