ok let's see a little example
i have 2 packages in directory classes:
classes\srv
and
classes\ui
and in it i have 2 files:
classes\srv\Srv1.as
classes\srv\Ui.as
it's code is below:
/*-------------------------------------------------------------*/
import srv.Srv1;
class ui.Ui extends Srv1{
public function toXML1():Void {
toXML();
trace("toxml1");
}
}
/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
class srv.Srv1 {
public function toXML():Void {
trace("toxml");
}
}
/*-------------------------------------------------------------*/
and import both directory to Logical Model.
it's ok worked, created diagrams for both classes, but i'm cann't view generalization. Because it's two different classes without relations.
and i have about 50 packages in my project - it's quite difficult import each of them
