Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jdt-core-dev] Handle cycle dependencies using JDT

Hi guys,

Does someone know how I could use JDT to compile a simple example of cycle dependency like the one I'm describing below?

Proj1

                Class1 {

                                Class2 c2;

                }

 

Proj2

                Class2 {

                                Class1 c1;

                }

 
I know Eclipse does this magic using JDT but I'd like to know how it happens behind the scenes. Has someone already done that or could point me out where I can find some examples to help me?

* let's disregard the reasons I have these cycles ok ?  :)

I'd apreciate any help

Thanks in advance

--
[Raphael Moita


Back to the top