Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF "Technology" (Ecore Tools, EMFatic, etc)  » [teneo] How to specify table generators?
[teneo] How to specify table generators? [message #67767] Wed, 10 January 2007 23:26 Go to next message
Eclipse UserFriend
Originally posted by: user.domain.com

Hi,

Im trying ot convert an old hibernate appl to Teneo and now I go to the
point were I need to convert a Table generator spec to annotation.
However I get an exception saying that no table generator is defined.

------------
843 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.IdMapper - No
GenericGenerator defined under name: BRM_SEQ_STORE
31218 [main] DEBUG
org.eclipse.emf.teneo.annotations.pamodel.impl.PAnnotatedMod elImpl - No
table generator found with the name: BRM_SEQ_STORE, name is used in
annotation of element BaseTypedIdentifier/id
---------------------------------

however earlier in the appl I get the following suggesting that
something is being parsed???

-------------------------------
703 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
Number of parsed typename annotations 5
703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Converting TableGenerator to EObject
703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Primitive child: name: BRM_SEQ_STORE
703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Primitive child: table: BRM_IF_GENERATOR
703 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
Found EReference tableGenerator for TableGenerator
703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Converting Id to EObject
703 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
Found EReference id for Id
703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Converting Column to EObject
718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Primitive child: name: IDENTIFIER_ID
718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Primitive child: length: 75
718 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
Found EReference column for Column
718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Converting GeneratedValue to EObject
718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Primitive child: strategy: TABLE
718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Primitive child: generator: BRM_SEQ_STORE
718 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
Found EReference generatedValue for GeneratedValue
718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Converting SequenceGenerator to EObject
718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
- Primitive child: name: SEQ_STORE
718 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
Found EReference sequenceGenerator for SequenceGenerator

-------------------------------
here is my ID property definition. any ideas why below table gen doest work?

<eStructuralFeatures xsi:type="ecore:EAttribute" name="id"
ordered="false" lowerBound="1" eType="ecore:EDataType
http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="teneo.jpa">
<details key="value"
value=" &#x9;@TableGenerator(name=&quot;BRM_SEQ_STORE&qu ot;)&#xD;&#xA;
@Id&#xD;&#xA;&#x9;@Column(name=&quot;IDENTIF IER_ID&quot; ,
length=75)&#xD;&#xA;&#x9;@GeneratedValue(strateg y=TABLE,
generator=&quot;BRM_SEQ_STORE&quot;)&#xD;&#x A;&#x9;@SequenceGenerator(name=&quot;SEQ_STORE&q uot;)&#xD;&#xA; "/>
</eAnnotations>
</eStructuralFeatures>


regards
/anders
Re: [teneo] How to specify table generators? [message #67913 is a reply to message #67767] Thu, 11 January 2007 13:12 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi,
Can you try to specify the tablegenerator annotation on epackage level?

If it works can you then enter a bugzilla that tablegenerator should also be supported on efeature
level.

gr. Martin

user@domain.com wrote:
> Hi,
>
> Im trying ot convert an old hibernate appl to Teneo and now I go to the
> point were I need to convert a Table generator spec to annotation.
> However I get an exception saying that no table generator is defined.
>
> ------------
> 843 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.IdMapper - No
> GenericGenerator defined under name: BRM_SEQ_STORE
> 31218 [main] DEBUG
> org.eclipse.emf.teneo.annotations.pamodel.impl.PAnnotatedMod elImpl - No
> table generator found with the name: BRM_SEQ_STORE, name is used in
> annotation of element BaseTypedIdentifier/id
> ---------------------------------
>
> however earlier in the appl I get the following suggesting that
> something is being parsed???
>
> -------------------------------
> 703 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Number of parsed typename annotations 5
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting TableGenerator to EObject
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: name: BRM_SEQ_STORE
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: table: BRM_IF_GENERATOR
> 703 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference tableGenerator for TableGenerator
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting Id to EObject
> 703 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference id for Id
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting Column to EObject
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: name: IDENTIFIER_ID
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: length: 75
> 718 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference column for Column
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting GeneratedValue to EObject
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: strategy: TABLE
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: generator: BRM_SEQ_STORE
> 718 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference generatedValue for GeneratedValue
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting SequenceGenerator to EObject
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: name: SEQ_STORE
> 718 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference sequenceGenerator for SequenceGenerator
>
> -------------------------------
> here is my ID property definition. any ideas why below table gen doest
> work?
>
> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"
> ordered="false" lowerBound="1" eType="ecore:EDataType
> http://www.eclipse.org/emf/2002/Ecore#//EString">
> <eAnnotations source="teneo.jpa">
> <details key="value"
> value=" &#x9;@TableGenerator(name=&quot;BRM_SEQ_STORE&qu ot;)&#xD;&#xA;
> @Id&#xD;&#xA;&#x9;@Column(name=&quot;IDENTIF IER_ID&quot; ,
> length=75)&#xD;&#xA;&#x9;@GeneratedValue(strateg y=TABLE,
> generator=&quot;BRM_SEQ_STORE&quot;)&#xD;&#x A;&#x9;@SequenceGenerator(name=&quot;SEQ_STORE&q uot;)&#xD;&#xA; "/>
>
> </eAnnotations>
> </eStructuralFeatures>
>
>
> regards
> /anders


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [teneo] How to specify table generators? [message #67956 is a reply to message #67913] Thu, 11 January 2007 14:31 Go to previous message
Eclipse UserFriend
Originally posted by: user.domain.com

Hi Martin,

Thanks , its seem to work when I add TableGeneration annotation to the
package.

Ive added buzilla entry: 170217 for the feature request.

thanks
/anders

Martin Taal wrote:
> Hi,
> Can you try to specify the tablegenerator annotation on epackage level?
>
> If it works can you then enter a bugzilla that tablegenerator should
> also be supported on efeature level.
>
> gr. Martin
>
> user@domain.com wrote:
>> Hi,
>>
>> Im trying ot convert an old hibernate appl to Teneo and now I go to
>> the point were I need to convert a Table generator spec to annotation.
>> However I get an exception saying that no table generator is defined.
>>
>> ------------
>> 843 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.IdMapper -
>> No GenericGenerator defined under name: BRM_SEQ_STORE
>> 31218 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.pamodel.impl.PAnnotatedMod elImpl -
>> No table generator found with the name: BRM_SEQ_STORE, name is used in
>> annotation of element BaseTypedIdentifier/id
>> ---------------------------------
>>
>> however earlier in the appl I get the following suggesting that
>> something is being parsed???
>>
>> -------------------------------
>> 703 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Number of parsed typename annotations 5
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting TableGenerator to EObject
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: name: BRM_SEQ_STORE
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: table: BRM_IF_GENERATOR
>> 703 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference tableGenerator for TableGenerator
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting Id to EObject
>> 703 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference id for Id
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting Column to EObject
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: name: IDENTIFIER_ID
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: length: 75
>> 718 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference column for Column
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting GeneratedValue to EObject
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: strategy: TABLE
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: generator: BRM_SEQ_STORE
>> 718 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference generatedValue for GeneratedValue
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting SequenceGenerator to EObject
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: name: SEQ_STORE
>> 718 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference sequenceGenerator for SequenceGenerator
>>
>> -------------------------------
>> here is my ID property definition. any ideas why below table gen doest
>> work?
>>
>> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"
>> ordered="false" lowerBound="1" eType="ecore:EDataType
>> http://www.eclipse.org/emf/2002/Ecore#//EString">
>> <eAnnotations source="teneo.jpa">
>> <details key="value"
>> value=" &#x9;@TableGenerator(name=&quot;BRM_SEQ_STORE&qu ot;)&#xD;&#xA;
>> @Id&#xD;&#xA;&#x9;@Column(name=&quot;IDENTIF IER_ID&quot; ,
>> length=75)&#xD;&#xA;&#x9;@GeneratedValue(strateg y=TABLE,
>> generator=&quot;BRM_SEQ_STORE&quot;)&#xD;&#x A;&#x9;@SequenceGenerator(name=&quot;SEQ_STORE&q uot;)&#xD;&#xA; "/>
>>
>> </eAnnotations>
>> </eStructuralFeatures>
>>
>>
>> regards
>> /anders
>
>
Re: [teneo] How to specify table generators? [message #601140 is a reply to message #67767] Thu, 11 January 2007 13:12 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi,
Can you try to specify the tablegenerator annotation on epackage level?

If it works can you then enter a bugzilla that tablegenerator should also be supported on efeature
level.

gr. Martin

user@domain.com wrote:
> Hi,
>
> Im trying ot convert an old hibernate appl to Teneo and now I go to the
> point were I need to convert a Table generator spec to annotation.
> However I get an exception saying that no table generator is defined.
>
> ------------
> 843 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.IdMapper - No
> GenericGenerator defined under name: BRM_SEQ_STORE
> 31218 [main] DEBUG
> org.eclipse.emf.teneo.annotations.pamodel.impl.PAnnotatedMod elImpl - No
> table generator found with the name: BRM_SEQ_STORE, name is used in
> annotation of element BaseTypedIdentifier/id
> ---------------------------------
>
> however earlier in the appl I get the following suggesting that
> something is being parsed???
>
> -------------------------------
> 703 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Number of parsed typename annotations 5
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting TableGenerator to EObject
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: name: BRM_SEQ_STORE
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: table: BRM_IF_GENERATOR
> 703 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference tableGenerator for TableGenerator
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting Id to EObject
> 703 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference id for Id
> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting Column to EObject
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: name: IDENTIFIER_ID
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: length: 75
> 718 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference column for Column
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting GeneratedValue to EObject
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: strategy: TABLE
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: generator: BRM_SEQ_STORE
> 718 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference generatedValue for GeneratedValue
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Converting SequenceGenerator to EObject
> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode -
> Primitive child: name: SEQ_STORE
> 718 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference sequenceGenerator for SequenceGenerator
>
> -------------------------------
> here is my ID property definition. any ideas why below table gen doest
> work?
>
> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"
> ordered="false" lowerBound="1" eType="ecore:EDataType
> http://www.eclipse.org/emf/2002/Ecore#//EString">
> <eAnnotations source="teneo.jpa">
> <details key="value"
> value=" &#x9;@TableGenerator(name=&quot;BRM_SEQ_STORE&qu ot;)&#xD;&#xA;
> @Id&#xD;&#xA;&#x9;@Column(name=&quot;IDENTIF IER_ID&quot; ,
> length=75)&#xD;&#xA;&#x9;@GeneratedValue(strateg y=TABLE,
> generator=&quot;BRM_SEQ_STORE&quot;)&#xD;&#x A;&#x9;@SequenceGenerator(name=&quot;SEQ_STORE&q uot;)&#xD;&#xA; "/>
>
> </eAnnotations>
> </eStructuralFeatures>
>
>
> regards
> /anders


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [teneo] How to specify table generators? [message #601159 is a reply to message #67913] Thu, 11 January 2007 14:31 Go to previous message
user is currently offline userFriend
Messages: 296
Registered: July 2009
Senior Member
Hi Martin,

Thanks , its seem to work when I add TableGeneration annotation to the
package.

Ive added buzilla entry: 170217 for the feature request.

thanks
/anders

Martin Taal wrote:
> Hi,
> Can you try to specify the tablegenerator annotation on epackage level?
>
> If it works can you then enter a bugzilla that tablegenerator should
> also be supported on efeature level.
>
> gr. Martin
>
> user@domain.com wrote:
>> Hi,
>>
>> Im trying ot convert an old hibernate appl to Teneo and now I go to
>> the point were I need to convert a Table generator spec to annotation.
>> However I get an exception saying that no table generator is defined.
>>
>> ------------
>> 843 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.IdMapper -
>> No GenericGenerator defined under name: BRM_SEQ_STORE
>> 31218 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.pamodel.impl.PAnnotatedMod elImpl -
>> No table generator found with the name: BRM_SEQ_STORE, name is used in
>> annotation of element BaseTypedIdentifier/id
>> ---------------------------------
>>
>> however earlier in the appl I get the following suggesting that
>> something is being parsed???
>>
>> -------------------------------
>> 703 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Number of parsed typename annotations 5
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting TableGenerator to EObject
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: name: BRM_SEQ_STORE
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: table: BRM_IF_GENERATOR
>> 703 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference tableGenerator for TableGenerator
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting Id to EObject
>> 703 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference id for Id
>> 703 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting Column to EObject
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: name: IDENTIFIER_ID
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: length: 75
>> 718 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference column for Column
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting GeneratedValue to EObject
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: strategy: TABLE
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: generator: BRM_SEQ_STORE
>> 718 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference generatedValue for GeneratedValue
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Converting SequenceGenerator to EObject
>> 718 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.ComplexNode
>> - Primitive child: name: SEQ_STORE
>> 718 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference sequenceGenerator for SequenceGenerator
>>
>> -------------------------------
>> here is my ID property definition. any ideas why below table gen doest
>> work?
>>
>> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"
>> ordered="false" lowerBound="1" eType="ecore:EDataType
>> http://www.eclipse.org/emf/2002/Ecore#//EString">
>> <eAnnotations source="teneo.jpa">
>> <details key="value"
>> value=" &#x9;@TableGenerator(name=&quot;BRM_SEQ_STORE&qu ot;)&#xD;&#xA;
>> @Id&#xD;&#xA;&#x9;@Column(name=&quot;IDENTIF IER_ID&quot; ,
>> length=75)&#xD;&#xA;&#x9;@GeneratedValue(strateg y=TABLE,
>> generator=&quot;BRM_SEQ_STORE&quot;)&#xD;&#x A;&#x9;@SequenceGenerator(name=&quot;SEQ_STORE&q uot;)&#xD;&#xA; "/>
>>
>> </eAnnotations>
>> </eStructuralFeatures>
>>
>>
>> regards
>> /anders
>
>
Previous Topic:Versions of OCL
Next Topic:[teneo] Is Inheritance variant TABLE_PER_CLASS still unsupported
Goto Forum:
  


Current Time: Fri Apr 19 16:07:44 GMT 2024

Powered by FUDForum. Page generated in 0.02242 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top