Package org.jboss.metatype.api.values

Examples of org.jboss.metatype.api.values.TableValue


/*  567 */       CollectionValue collectionValue = (CollectionValue)metaValue;
/*  568 */       return unwrapCollection(collectionValue, type);
/*      */     }
/*  570 */     if (metaType.isTable())
/*      */     {
/*  572 */       TableValue tableValue = (TableValue)metaValue;
/*  573 */       return unwrapTable(tableValue, type);
/*      */     }
/*      */
/*  576 */     throw new IllegalArgumentException("Unsupported meta value: " + metaValue);
/*      */   }
View Full Code Here


         CollectionValue collectionValue = (CollectionValue)metaValue;
         return unwrapCollection(collectionValue, type);
      }
      else if (metaType.isTable())
      {
         TableValue tableValue = (TableValue)metaValue;
         return unwrapTable(tableValue, type);
      }

      throw new IllegalArgumentException("Unsupported meta value: " + metaValue);
   }
View Full Code Here

TOP

Related Classes of org.jboss.metatype.api.values.TableValue

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.