Package org.molgenis.fieldtypes

Examples of org.molgenis.fieldtypes.CharField


  @Test
  public void testGetSetVarCharLength() throws MolgenisModelException
  {
    {
      Field field = new Field(mock(Entity.class), "field", new CharField());
      field.setVarCharLength(10);
      assertEquals(field.getVarCharLength(), 10);
    }
    {
      Field field = new Field(mock(Entity.class), "field", new StringField());
View Full Code Here

TOP

Related Classes of org.molgenis.fieldtypes.CharField

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.