-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (56 loc) · 2.64 KB
/
Copy pathindex.html
File metadata and controls
67 lines (56 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<head>
<title>Fancy Java Doc</title>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v2.min.js?2.9.3"></script>
<script src="script.min.js"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body style="margin: 0;background-color: #252929;overflow:hidden" onload="load()">
<div style="float: right" id= "info" class="info">
<div class="search">
<label> Fancy Java Doc</label>
<input type="search" placeholder="enter interface,class,excpetion name" id = "searchquery"/>
</div>
<div id = "intro">
<p>
Last month i was taking core java class and i have to look again again java doc .. And believe me that was fustrating.So
from that time i was thinking how to make it better or may be less boring . Same time i came across <a href="https://github.com/hughsk/colony" target="_blank" style="text-decoration: none"> colony</a>.
which actualy visualize all module present in node.js and there relationship with code at right time,you can check it out
<a href="http://hughsk.github.com/colony/" target="_blank" style="text-decoration: none"> here </a>.
</p>
<p>
So you can say i inspire from his work and try to think how can I make javadoc more interesting. I used <a href="http://d3js.org/" target="_blank" style="text-decoration: none"> d3.js </a>.
It is data driven document which specialy develope for visualizing data . I use force layout for creating this effect.You should check out.
There are many example which are explain in very detail.
</p>
<p>
This is just proof of concept . And there are many things to improve . I would like to do it more better . if you like to contribute you can find code
<a href="https://github.com/ChetanD/FancyJavaDoc" target="_blank" style="text-decoration: none"> here </a>.
</p>
<p>
<h4>You Can find me here</h4>
<ul >
<li style="text-decoration:none;"><a href="https://twitter.com/ichetandhembre" target="_blank">Twitter</a></li>
<li style="text-decoration:none;"><a href="https://www.facebook.com/chetan.dhembre" target="__blank">Facebook</a></li>
<li style="text-decoration:none;"><a href="https://plus.google.com/" target="_blank">Google +</a></li>
</ul>
</p>
</div>
<div id = "doc">
<div class="javadoc" id = "javadoc">
<h2 id="nameOfObj"></h2>
<p id = "signature" class="signature"></p>
<br />
<p id = "descritption"> </p>
<h3>Constructor Summary</h3>
<p id= "constructor">
</p>
<h3>Method Summary</h3>
<p id= "methods">
</p>
</div>
</div>
</div>
</body>
</html>