Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF "Technology" (Ecore Tools, EMFatic, etc)  » teneo - @OrderBy not processed?
teneo - @OrderBy not processed? [message #66042] Mon, 01 January 2007 18:18 Go to next message
Andre Pareis is currently offline Andre PareisFriend
Messages: 113
Registered: July 2009
Senior Member
Hi Martin,

I have annotated a One-to-Many association with @OrderBy on the many side like this:

<eStructuralFeatures xsi:type="ecore:EReference" name="instruments" upperBound="-1"
eType="#//pareis/trading/Instrument" containment="true"
eOpposite="#//pareis/trading/Instrument/Client">
<eAnnotations source="teneo.jpa">
<details key="value" value="@OneToMany(indexed=false)
@OrderBy(&quot;id&quot;)"/>
</eAnnotations>
</eStructuralFeatures>



It is correctly parsed as:

2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Annotation
content:
@OneToMany(indexed=false) @OrderBy("id")
2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.AnnotationTokenizer - Tok: 1: 'OneToMany'
Tok: 7: '('
Tok: 2: 'indexed'
Tok: 6: '='
Tok: 2: 'false'
Tok: 8: ')'
Tok: 1: 'OrderBy'
Tok: 7: '('
Tok: 5: '"id"'
Tok: 8: ')'
Tok: 0: ')'

2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of
parsed typename annotations 2
2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting OneToMany to
EObject
2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive child:
indexed: false
2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Found
EReference oneToMany for OneToMany
2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting OrderBy to
EObject
2007-01-01 19:12:45,364 [main] DEBUG
org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive child: value: id



But no ordering information is produced in the mapping descriptor:


<bag name="instruments" lazy="true" cascade="all,delete-orphan">
<key update="true">
<column name="`Instrument_Client_id`" not-null="false" unique="false"/>
</key>
<one-to-many entity-name="Instrument"/>
</bag>


Can you help?

Thanks
Andre
Re: teneo - @OrderBy not processed? [message #66064 is a reply to message #66042] Mon, 01 January 2007 18:29 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Andre,
Orderby is not yet supported. It is easy for me to add it so if you can enter a bugzilla then I'll
add it the coming days.

gr. Martin

Andre Pareis wrote:
> Hi Martin,
>
> I have annotated a One-to-Many association with @OrderBy on the many
> side like this:
>
> <eStructuralFeatures xsi:type="ecore:EReference" name="instruments"
> upperBound="-1"
> eType="#//pareis/trading/Instrument" containment="true"
> eOpposite="#//pareis/trading/Instrument/Client">
> <eAnnotations source="teneo.jpa">
> <details key="value" value="@OneToMany(indexed=false)
> @OrderBy(&quot;id&quot;)"/>
> </eAnnotations>
> </eStructuralFeatures>
>
>
>
> It is correctly parsed as:
>
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Annotation content:
> @OneToMany(indexed=false) @OrderBy("id")
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.AnnotationTokenizer - Tok: 1:
> 'OneToMany'
> Tok: 7: '('
> Tok: 2: 'indexed'
> Tok: 6: '='
> Tok: 2: 'false'
> Tok: 8: ')'
> Tok: 1: 'OrderBy'
> Tok: 7: '('
> Tok: 5: '"id"'
> Tok: 8: ')'
> Tok: 0: ')'
>
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Number of parsed typename annotations 2
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
> OneToMany to EObject
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive child:
> indexed: false
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference oneToMany for OneToMany
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
> OrderBy to EObject
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive child:
> value: id
>
>
>
> But no ordering information is produced in the mapping descriptor:
>
>
> <bag name="instruments" lazy="true" cascade="all,delete-orphan">
> <key update="true">
> <column name="`Instrument_Client_id`" not-null="false"
> unique="false"/>
> </key>
> <one-to-many entity-name="Instrument"/>
> </bag>
>
>
> Can you help?
>
> Thanks
> Andre


--

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 - @OrderBy not processed? [message #66084 is a reply to message #66064] Mon, 01 January 2007 19:04 Go to previous messageGo to next message
Andre Pareis is currently offline Andre PareisFriend
Messages: 113
Registered: July 2009
Senior Member
Hi Martin,

thanks for the info. I have opened a bug for this:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=169313

Regards
Andre



Martin Taal wrote:
> Hi Andre,
> Orderby is not yet supported. It is easy for me to add it so if you can
> enter a bugzilla then I'll add it the coming days.
>
> gr. Martin
>
> Andre Pareis wrote:
>> Hi Martin,
>>
>> I have annotated a One-to-Many association with @OrderBy on the many
>> side like this:
>>
>> <eStructuralFeatures xsi:type="ecore:EReference" name="instruments"
>> upperBound="-1"
>> eType="#//pareis/trading/Instrument" containment="true"
>> eOpposite="#//pareis/trading/Instrument/Client">
>> <eAnnotations source="teneo.jpa">
>> <details key="value" value="@OneToMany(indexed=false)
>> @OrderBy(&quot;id&quot;)"/>
>> </eAnnotations>
>> </eStructuralFeatures>
>>
>>
>>
>> It is correctly parsed as:
>>
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Annotation content:
>> @OneToMany(indexed=false) @OrderBy("id")
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.AnnotationTokenizer - Tok:
>> 1: 'OneToMany'
>> Tok: 7: '('
>> Tok: 2: 'indexed'
>> Tok: 6: '='
>> Tok: 2: 'false'
>> Tok: 8: ')'
>> Tok: 1: 'OrderBy'
>> Tok: 7: '('
>> Tok: 5: '"id"'
>> Tok: 8: ')'
>> Tok: 0: ')'
>>
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Number of parsed typename annotations 2
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>> OneToMany to EObject
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>> child: indexed: false
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference oneToMany for OneToMany
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>> OrderBy to EObject
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>> child: value: id
>>
>>
>>
>> But no ordering information is produced in the mapping descriptor:
>>
>>
>> <bag name="instruments" lazy="true" cascade="all,delete-orphan">
>> <key update="true">
>> <column name="`Instrument_Client_id`" not-null="false"
>> unique="false"/>
>> </key>
>> <one-to-many entity-name="Instrument"/>
>> </bag>
>>
>>
>> Can you help?
>>
>> Thanks
>> Andre
>
>
Re: teneo - @OrderBy not processed? [message #66191 is a reply to message #66084] Wed, 03 January 2007 00:17 Go to previous message
Andre Pareis is currently offline Andre PareisFriend
Messages: 113
Registered: July 2009
Senior Member
I have tested this implementation and it works. Thanks, Andre


Andre Pareis wrote:
> Hi Martin,
>
> thanks for the info. I have opened a bug for this:
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=169313
>
> Regards
> Andre
>
>
>
> Martin Taal wrote:
>> Hi Andre,
>> Orderby is not yet supported. It is easy for me to add it so if you
>> can enter a bugzilla then I'll add it the coming days.
>>
>> gr. Martin
>>
>> Andre Pareis wrote:
>>> Hi Martin,
>>>
>>> I have annotated a One-to-Many association with @OrderBy on the many
>>> side like this:
>>>
>>> <eStructuralFeatures xsi:type="ecore:EReference" name="instruments"
>>> upperBound="-1"
>>> eType="#//pareis/trading/Instrument" containment="true"
>>> eOpposite="#//pareis/trading/Instrument/Client">
>>> <eAnnotations source="teneo.jpa">
>>> <details key="value" value="@OneToMany(indexed=false)
>>> @OrderBy(&quot;id&quot;)"/>
>>> </eAnnotations>
>>> </eStructuralFeatures>
>>>
>>>
>>>
>>> It is correctly parsed as:
>>>
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>>> Annotation content:
>>> @OneToMany(indexed=false) @OrderBy("id")
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.AnnotationTokenizer - Tok:
>>> 1: 'OneToMany'
>>> Tok: 7: '('
>>> Tok: 2: 'indexed'
>>> Tok: 6: '='
>>> Tok: 2: 'false'
>>> Tok: 8: ')'
>>> Tok: 1: 'OrderBy'
>>> Tok: 7: '('
>>> Tok: 5: '"id"'
>>> Tok: 8: ')'
>>> Tok: 0: ')'
>>>
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>>> Number of parsed typename annotations 2
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>>> OneToMany to EObject
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>>> child: indexed: false
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>>> Found EReference oneToMany for OneToMany
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>>> OrderBy to EObject
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>>> child: value: id
>>>
>>>
>>>
>>> But no ordering information is produced in the mapping descriptor:
>>>
>>>
>>> <bag name="instruments" lazy="true" cascade="all,delete-orphan">
>>> <key update="true">
>>> <column name="`Instrument_Client_id`"
>>> not-null="false" unique="false"/>
>>> </key>
>>> <one-to-many entity-name="Instrument"/>
>>> </bag>
>>>
>>>
>>> Can you help?
>>>
>>> Thanks
>>> Andre
>>
>>
Re: teneo - @OrderBy not processed? [message #600439 is a reply to message #66042] Mon, 01 January 2007 18:29 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Andre,
Orderby is not yet supported. It is easy for me to add it so if you can enter a bugzilla then I'll
add it the coming days.

gr. Martin

Andre Pareis wrote:
> Hi Martin,
>
> I have annotated a One-to-Many association with @OrderBy on the many
> side like this:
>
> <eStructuralFeatures xsi:type="ecore:EReference" name="instruments"
> upperBound="-1"
> eType="#//pareis/trading/Instrument" containment="true"
> eOpposite="#//pareis/trading/Instrument/Client">
> <eAnnotations source="teneo.jpa">
> <details key="value" value="@OneToMany(indexed=false)
> @OrderBy(&quot;id&quot;)"/>
> </eAnnotations>
> </eStructuralFeatures>
>
>
>
> It is correctly parsed as:
>
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Annotation content:
> @OneToMany(indexed=false) @OrderBy("id")
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.AnnotationTokenizer - Tok: 1:
> 'OneToMany'
> Tok: 7: '('
> Tok: 2: 'indexed'
> Tok: 6: '='
> Tok: 2: 'false'
> Tok: 8: ')'
> Tok: 1: 'OrderBy'
> Tok: 7: '('
> Tok: 5: '"id"'
> Tok: 8: ')'
> Tok: 0: ')'
>
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Number of parsed typename annotations 2
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
> OneToMany to EObject
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive child:
> indexed: false
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
> Found EReference oneToMany for OneToMany
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
> OrderBy to EObject
> 2007-01-01 19:12:45,364 [main] DEBUG
> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive child:
> value: id
>
>
>
> But no ordering information is produced in the mapping descriptor:
>
>
> <bag name="instruments" lazy="true" cascade="all,delete-orphan">
> <key update="true">
> <column name="`Instrument_Client_id`" not-null="false"
> unique="false"/>
> </key>
> <one-to-many entity-name="Instrument"/>
> </bag>
>
>
> Can you help?
>
> Thanks
> Andre


--

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 - @OrderBy not processed? [message #600447 is a reply to message #66064] Mon, 01 January 2007 19:04 Go to previous message
Andre Pareis is currently offline Andre PareisFriend
Messages: 113
Registered: July 2009
Senior Member
Hi Martin,

thanks for the info. I have opened a bug for this:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=169313

Regards
Andre



Martin Taal wrote:
> Hi Andre,
> Orderby is not yet supported. It is easy for me to add it so if you can
> enter a bugzilla then I'll add it the coming days.
>
> gr. Martin
>
> Andre Pareis wrote:
>> Hi Martin,
>>
>> I have annotated a One-to-Many association with @OrderBy on the many
>> side like this:
>>
>> <eStructuralFeatures xsi:type="ecore:EReference" name="instruments"
>> upperBound="-1"
>> eType="#//pareis/trading/Instrument" containment="true"
>> eOpposite="#//pareis/trading/Instrument/Client">
>> <eAnnotations source="teneo.jpa">
>> <details key="value" value="@OneToMany(indexed=false)
>> @OrderBy(&quot;id&quot;)"/>
>> </eAnnotations>
>> </eStructuralFeatures>
>>
>>
>>
>> It is correctly parsed as:
>>
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Annotation content:
>> @OneToMany(indexed=false) @OrderBy("id")
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.AnnotationTokenizer - Tok:
>> 1: 'OneToMany'
>> Tok: 7: '('
>> Tok: 2: 'indexed'
>> Tok: 6: '='
>> Tok: 2: 'false'
>> Tok: 8: ')'
>> Tok: 1: 'OrderBy'
>> Tok: 7: '('
>> Tok: 5: '"id"'
>> Tok: 8: ')'
>> Tok: 0: ')'
>>
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Number of parsed typename annotations 2
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>> OneToMany to EObject
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>> child: indexed: false
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>> Found EReference oneToMany for OneToMany
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>> OrderBy to EObject
>> 2007-01-01 19:12:45,364 [main] DEBUG
>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>> child: value: id
>>
>>
>>
>> But no ordering information is produced in the mapping descriptor:
>>
>>
>> <bag name="instruments" lazy="true" cascade="all,delete-orphan">
>> <key update="true">
>> <column name="`Instrument_Client_id`" not-null="false"
>> unique="false"/>
>> </key>
>> <one-to-many entity-name="Instrument"/>
>> </bag>
>>
>>
>> Can you help?
>>
>> Thanks
>> Andre
>
>
Re: teneo - @OrderBy not processed? [message #600495 is a reply to message #66084] Wed, 03 January 2007 00:17 Go to previous message
Andre Pareis is currently offline Andre PareisFriend
Messages: 113
Registered: July 2009
Senior Member
I have tested this implementation and it works. Thanks, Andre


Andre Pareis wrote:
> Hi Martin,
>
> thanks for the info. I have opened a bug for this:
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=169313
>
> Regards
> Andre
>
>
>
> Martin Taal wrote:
>> Hi Andre,
>> Orderby is not yet supported. It is easy for me to add it so if you
>> can enter a bugzilla then I'll add it the coming days.
>>
>> gr. Martin
>>
>> Andre Pareis wrote:
>>> Hi Martin,
>>>
>>> I have annotated a One-to-Many association with @OrderBy on the many
>>> side like this:
>>>
>>> <eStructuralFeatures xsi:type="ecore:EReference" name="instruments"
>>> upperBound="-1"
>>> eType="#//pareis/trading/Instrument" containment="true"
>>> eOpposite="#//pareis/trading/Instrument/Client">
>>> <eAnnotations source="teneo.jpa">
>>> <details key="value" value="@OneToMany(indexed=false)
>>> @OrderBy(&quot;id&quot;)"/>
>>> </eAnnotations>
>>> </eStructuralFeatures>
>>>
>>>
>>>
>>> It is correctly parsed as:
>>>
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>>> Annotation content:
>>> @OneToMany(indexed=false) @OrderBy("id")
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.AnnotationTokenizer - Tok:
>>> 1: 'OneToMany'
>>> Tok: 7: '('
>>> Tok: 2: 'indexed'
>>> Tok: 6: '='
>>> Tok: 2: 'false'
>>> Tok: 8: ')'
>>> Tok: 1: 'OrderBy'
>>> Tok: 7: '('
>>> Tok: 5: '"id"'
>>> Tok: 8: ')'
>>> Tok: 0: ')'
>>>
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>>> Number of parsed typename annotations 2
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>>> OneToMany to EObject
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>>> child: indexed: false
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter -
>>> Found EReference oneToMany for OneToMany
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Converting
>>> OrderBy to EObject
>>> 2007-01-01 19:12:45,364 [main] DEBUG
>>> org.eclipse.emf.teneo.annotations.parser.ComplexNode - Primitive
>>> child: value: id
>>>
>>>
>>>
>>> But no ordering information is produced in the mapping descriptor:
>>>
>>>
>>> <bag name="instruments" lazy="true" cascade="all,delete-orphan">
>>> <key update="true">
>>> <column name="`Instrument_Client_id`"
>>> not-null="false" unique="false"/>
>>> </key>
>>> <one-to-many entity-name="Instrument"/>
>>> </bag>
>>>
>>>
>>> Can you help?
>>>
>>> Thanks
>>> Andre
>>
>>
Previous Topic:EMFT - OCL Release 1.0.1 build
Next Topic:JET error
Goto Forum:
  


Current Time: Fri Apr 26 19:35:24 GMT 2024

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

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

Back to the top