Package org.molgenis.framework.ui.html

Examples of org.molgenis.framework.ui.html.HtmlInputException


  public String render() throws HtmlInputException
  {
    String result = this.getView().render();
    if (result == null || result.isEmpty())
    {
      throw new HtmlInputException("render showed nothing for " + this);
    }
    return result;
  }
View Full Code Here


      return new MrefInput(name, klass);
    }
    catch (ClassNotFoundException e)
    {
      throw new HtmlInputException(e);
    }
  }
View Full Code Here

   * Since this class is deprecated, this method is not implemented.
   */
  @Override
  public HtmlInput<?> createInput(String name, String xrefEntityClassName) throws HtmlInputException
  {
    throw new HtmlInputException("Class deprecated, will not return input.");
  }
View Full Code Here

    {
      return new XrefInput<Entity>(name, xrefEntityClassName);
    }
    catch (ClassNotFoundException e)
    {
      throw new HtmlInputException(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.molgenis.framework.ui.html.HtmlInputException

Copyright © 2018 www.massapicom. 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.