Package de.mhus.lib.cao.util

Examples of de.mhus.lib.cao.util.StringArrayList


  @Override
  public CaoList getList(String name, CaoAccess access, String... attributes) throws CaoException {
    Object v = values.get(name);
    if ( v instanceof String[]) {
      CaoMetaDefinition md = meta.getDefinition(name);
      return new StringArrayList(this,null,(String[])v,name,CaoMetaDefinition.TYPE.STRING,md.getNls(),md.getSize());
    }
    throw new ObjectNotFoundException(name);
  }
View Full Code Here

TOP

Related Classes of de.mhus.lib.cao.util.StringArrayList

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.