587
|
1 |
<#--
|
|
2 |
============================================================================
|
|
3 |
Name :
|
|
4 |
Part of : Helium
|
|
5 |
|
|
6 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
7 |
All rights reserved.
|
|
8 |
This component and the accompanying materials are made available
|
|
9 |
under the terms of the License "Eclipse Public License v1.0"
|
|
10 |
which accompanies this distribution, and is available
|
|
11 |
at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
12 |
|
|
13 |
Initial Contributors:
|
|
14 |
Nokia Corporation - initial contribution.
|
|
15 |
|
|
16 |
Contributors:
|
|
17 |
|
|
18 |
Description:
|
|
19 |
|
|
20 |
============================================================================
|
|
21 |
-->
|
|
22 |
<@pp.changeOutputFile name="target-example.dot" />
|
|
23 |
|
|
24 |
strict digraph G {
|
|
25 |
rankdir=LR;
|
|
26 |
rotate=180;
|
|
27 |
ordering=out;
|
|
28 |
target [fontcolor=brown,fontsize=12,shape=box];
|
|
29 |
direct_dependency [fontcolor=brown,fontsize=12,shape=box];
|
|
30 |
indirect_dependency [fontcolor=brown,fontsize=12,shape=box];
|
|
31 |
antcall_dependency [fontcolor=brown,fontsize=12,shape=box];
|
|
32 |
runtarget_dependency [fontcolor=brown,fontsize=12,shape=box];
|
|
33 |
target -> direct_dependency [color=navyblue,label="1",fontsize=12];
|
|
34 |
direct_dependency -> indirect_dependency [color=navyblue,label="1",fontsize=12];
|
|
35 |
target -> antcall_dependency [color=limegreen,label="2",fontsize=12];
|
|
36 |
target -> runtarget_dependency [color=limegreen,label="3",fontsize=12];
|
|
37 |
} |