[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[birt-news] Getting dataType info
|
- From: "Prateek Sharma" <prateek3.14@xxxxxxxxx>
- Date: Thu, 18 Sep 2008 18:26:33 +0530
- Delivered-to: birt-news@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=9nwaYTZfbMV2AXnbXGkROu0j3Akrn8haaQHCKrgcv4k=; b=qmCfxD0m1FDcPf4ePmfTvCDJ6Z8NSMVSICDiCc1lch8zDHqerrzCyDXWlNFGrIwQ1t LzINTze0/nnYHns0Ja+9sqLNw3sUYrYJ9PNAH3YrLgw8Z7+qRp0MvLRLymZ0VCNUJCmA TUPGAq/Qn8kDSzN+hj2FQTy9kiJfL9rg48DYQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=dXhXBcZNDpwwg07WMLYhwTA3Jw5c8klWNtlc3vaEaq0T5PeAmgJtePXvRzlevSq25F yv4pSAX21xPb47ddzmkz+QrvV3qR5fy41xwCuf23wJbSZ5g6vt2Eq49X1zOWl9Nw4Ion 1yK5OrY1b+NFXmolWNLzptcH7d2wdiarDKej0=
Hi all,
Is there a way to extract the dataType information? I am
extracting content by implementing the Emitter extension point.
<structure>
<property name="position">4</property>
<property name="name">QUANTITYINSTOCK</property>
<property name="nativeName">QUANTITYINSTOCK</property>
<property name="dataType">integer</property>
<property name="nativeDataType">4</property>
</structure>
In this snippet, lets say i want to know that the type in integer.
However, IDataContent.getContentType() is returning 3 (DATA_CONTENT).
So how can i get the datatype information of cells in tables, data boxes, etc?
Thanks a lot in advance!