Antwort: Re: Inheritance question

2021-11-17 Thread Georg Kallidis
org Von:Thomas Vandahl An: Apache Torque Users List Datum: 16.11.2021 13:54 Betreff: Re: Inheritance question Hi Youngho, > Am 15.11.2021 um 22:20 schrieb 조영호 : > > I would like to look at the code if I have an available time. > Where is a good starting point?

Re: Inheritance question

2021-11-16 Thread Thomas Vandahl
Hi Youngho, > Am 15.11.2021 um 22:20 schrieb 조영호 : > > I would like to look at the code if I have an available time. > Where is a good starting point? I suggest to look at org.apache.torque.templates.transformer.om.OMInheritanceTransformer in the torque-templates project as a starting point. L

Re: Inheritance question

2021-11-15 Thread 조영호
Hi Thomas, I would like to look at the code if I have an available time. Where is a good starting point? Thanks Youngho 2021년 11월 15일 (월) 오후 6:24, 조영호 님이 작성: > Ups > It is not correct, sorry for being noisy. > > Youngo > > 2021년 11월 15일 (월) 오후 6:22, 조영호 님이 작성: > >> Hi all, >> >> I found the w

Re: Inheritance question

2021-11-15 Thread 조영호
Ups It is not correct, sorry for being noisy. Youngo 2021년 11월 15일 (월) 오후 6:22, 조영호 님이 작성: > Hi all, > > I found the way. > The solution is not '.' notation but '/' file separator notation > Not class="attribute.B" But class="attribute/B" > works correctly. > > Thanks Thomas. > > Youngho > > 20

Re: Inheritance question

2021-11-15 Thread 조영호
Hi all, I found the way. The solution is not '.' notation but '/' file separator notation Not class="attribute.B" But class="attribute/B" works correctly. Thanks Thomas. Youngho 2021년 11월 15일 (월) 오후 5:26, Thomas Vandahl 님이 작성: > Am 14.11.2021 um 15:23 schrieb 조영호 : > > > > Hi Thomas, > > > >

Re: Inheritance question

2021-11-15 Thread Thomas Vandahl
Am 14.11.2021 um 15:23 schrieb 조영호 : > > Hi Thomas, > > I did. But the result is that 'attribute.B' Class Name class generated in > the om package. > ... > Am I missing something? I don’t think so. I’m afraid the construct you want was not intended in the design of the Torque templates. Sorry.

Re: Inheritance question

2021-11-14 Thread 조영호
Hi Thomas, I did. But the result is that 'attribute.B' Class Name class generated in the om package. package om public class attributeB extends A { public attribute.B() { setClassKey(...) } } Am I missing something? Thanks, Youngho 2021년 11월 14일 (일) 오후 11:02, Thomas

Re: Inheritance question

2021-11-14 Thread Thomas Vandahl
Hi Youngho, > Am 14.11.2021 um 14:04 schrieb 조영호 : > > But I would like to use another directory for Inheritance class. > such as > ../attribute Inheritance subclass lives > ../om main om classes lives > > Is it possible to use it like that in the current version ? I'm pretty sure that attri

Inheritance question

2021-11-14 Thread 조영호
Hello, I'm trying to use Inheritance. The guide in https://db.apache.org/torque/torque-5.0/documentation/orm-reference/inheritance.html is excellent. But I would like to use another directory for Inheritance class. such as ../attribute Inheritance subclass lives ../om main om classes lives

RE: Inheritance question

2005-12-09 Thread Thomas Fischer
Sounds like a bug to me. Can you open a Scarab issue on that, please ? Thanks, Thomas "Piechu Piechu" <[EMAIL PROTECTED]> schrieb am 09.12.2005 11:29:12: > I hava a question regarding usage of beans generated by torque in > conjunction with inheritance. I've got a class hierarchy l

Inheritance question

2005-12-09 Thread Piechu Piechu
I hava a question regarding usage of beans generated by torque in conjunction with inheritance. I've got a class hierarchy like this: Users .- | -. Driver StorekeeperAdmin I want to use single form with just username adn password for authentication