-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
302 lines (296 loc) · 11.3 KB
/
index.html
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!doctype html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110963818-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-110963818-1');
</script>
<meta charset="utf-8">
<meta name="description" content="Make Code Executable">
<meta name="keywords" content="Eclipse Plugin,Java">
<title>Codexe - Tutorial of Eclipse and Java</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#defaultNavbar1" aria-expanded="false"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
<a class="navbar-brand" href="/">CODEXE</a></div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="defaultNavbar1">
<ul class="nav navbar-nav">
<li><a href="/eclipse/create-an-eclipse-plugin.html">Eclipse<span class="sr-only">(current)</span></a></li>
<li><a href="/swt-jface/create-a-table.html">SWT JFace</a></li>
<li><a href="/hibernate/hibernate-tutorial.html">Hibernate</a></li>
<li><a href="/d3/d3-bar-chart.html">D3.js</a></li>
<li><a href="/j2ee/sign-up-process.html">J2EE Note</a></li>
</ul>
<!-- <form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>-->
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Eclipse</h3>
</div>
<div class="panel-body">
<a href="/eclipse/create-an-eclipse-plugin.html">Create an eclipse plugin</a>
</div>
<div class="panel-body">
<a href="/eclipse/create-a-custom-perspective.html">Create a custom perspective</a>
</div>
<div class="panel-body">
<a href="/eclipse/set-view-position-on-perspective.html">Set view position on perspective</a>
</div>
<div class="panel-body">
<a href="/eclipse/create-and-open-a-view.html">Create and open a custom view</a>
</div>
<div class="panel-body">
<a href="/eclipse/add-view-to-perspective.html">Add view to perspective</a>
</div>
<div class="panel-body">
<a href="/eclipse/add-menu-and-toolbar-to-view.html">Add menu and toolbar to view</a>
</div>
<div class="panel-body">
<a href="/eclipse/create-a-common-navigator.html">Create a common navigator</a>
</div>
<div class="panel-body">
<a href="/eclipse/add-filter-to-common-navigator.html">Add fillter to common navigator</a>
</div>
<div class="panel-body">
<a href="/eclipse/add-contents-to-common-navigator.html">Add contents to common navigator</a>
</div>
<div class="panel-body">
<a href="/eclipse/show-custom-data-on-navigator.html">Example: Let navigator only show your data</a>
</div>
<div class="panel-body">
<a href="/eclipse/add-menu-to-common-navigator.html">Add menu to common navigator</a>
</div>
<div class="panel-body">
<a href="/eclipse/add-sorter-to-common-navigator.html">Add sorter to common navigator</a>
</div>
<div class="panel-body">
<a href="/eclipse/create-tabbed-property-view.html">Create tabbed property view</a>
</div>
</div>
<!--D3-->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">D3.js</h3>
</div>
<div class="panel-body">
<a href="/d3/d3-bar-chart.html">Bar Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-bar-chart-scale.html">Scale Bar Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-bar-chart-scale-axis.html">Scale Bar Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-bar-chart-positive-negative.html">Positive Negative Bar Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-bar-chart-positive-negative-scale.html">Scale Positive Negative Bar Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-bar-chart-positive-negative-scale-axis.html">Scale Positive Negative Bar Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-scatter-chart-scale-axis.html">Scale Scatter Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-scatter-chart-positive-negative-scale-axis.html">Scale Positive Negative Scatter Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-line-chart-scale-axis.html">Scale Line Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-multi-line-chart-scale-axis.html">Scale Multi Line Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-area-chart-scale-axis.html">Scale Area Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-area-chart-positive-negative-scale-axis.html">Scale Positive Negative Area Chart With Axis</a>
</div>
<div class="panel-body">
<a href="/d3/d3-pie-chart.html">Pie Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-donut-chart.html">Donut Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-donut-chart-tooltip.html">Donut Chart With Tooltip</a>
</div>
<div class="panel-body">
<a href="/d3/d3-grid.html">Grid</a>
</div>
<div class="panel-body">
<a href="/d3/d3-brush.html">Brush</a>
</div>
<div class="panel-body">
<a href="/d3/d3-brush-bar-chart.html">Brush Bar Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-zoom.html">Zoom</a>
</div>
<div class="panel-body">
<a href="/d3/d3-zoomable-line-chart.html">Zoomable Line Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-brush-zoom-line-chart.html">Brush Zoom Line Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-brush-zoom-bar-chart.html">Brush Zoom Bar Chart</a>
</div>
<div class="panel-body">
<a href="/d3/d3-line-chart-hover-scatter-plot.html">Line Chart Hover Scatter Plot</a>
</div>
<div class="panel-body">
<a href="/d3/d3-multi-line-chart-hover-scatter-plot.html">Multi Line Chart Hover Scatter Plot</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">SWT JFace</h3>
</div>
<div class="panel-body">
<a href="/swt-jface/create-a-table.html">Create a table</a>
</div>
<div class="panel-body">
<a href="/swt-jface/add-menu-to-table.html">Add menu to table</a>
</div>
<div class="panel-body">
<a href="/swt-jface/add-text-and-combo-box-to-table.html">Add text and combo box to table</a>
</div>
<div class="panel-body">
<a href="/swt-jface/add-button-and-label-to-table.html">Add button and label to table</a>
</div>
<div class="panel-body">
<a href="/swt-jface/swt-color-dialog.html">SWT color dialog</a>
</div>
<div class="panel-body">
<a href="/swt-jface/swt-directory-dialog.html">SWT directory dialog</a>
</div>
<div class="panel-body">
<a href="/swt-jface/swt-file-dialog.html">SWT file dialog</a>
</div>
<div class="panel-body">
<a href="/swt-jface/swt-message-box.html">SWT message box</a>
</div>
<div class="panel-body">
<a href="/swt-jface/jface-message-dialog.html">JFace message dialog</a>
</div>
</div>
<!-- hibernate-->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Hibernate</h3>
</div>
<div class="panel-body">
<a href="/hibernate/hibernate-tutorial.html">Hibernate tutorial</a>
</div>
<div class="panel-body">
<a href="/hibernate/install-hibernate-jboss-tool.html">Install Hibernate JBoss tool</a>
</div>
<div class="panel-body">
<a href="/hibernate/generate-hibernate-configuration-file.html">Generate hibernate.cfg.xml file</a>
</div>
<div class="panel-body">
<a href="/hibernate/generate-hibernate-mapping-file.html">Generate hibernate mapping file</a>
</div>
<div class="panel-body">
<a href="/hibernate/hibernate-exceptions.html">Hibernate exceptions</a>
</div>
<div class="panel-body">
<a href="/hibernate/communication-link-failure.html">Communication link failure</a>
</div>
<div class="panel-body">
<a href="/hibernate/hibernate-get-load.html">get vs load</a>
</div>
<div class="panel-body">
<a href="/hibernate/hibernate-opensession-getcurrentsession.html">openSession vs getCurrentSession</a>
</div>
</div>
<!--J2EE Website-->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">J2EE Note</h3>
</div>
<div class="panel-body">
<a href="/j2ee/sign-up-process.html">Sign up process</a>
</div>
<div class="panel-body">
<a href="/j2ee/password-encryption.html">Password encryption</a>
</div>
<div class="panel-body">
<a href="/j2ee/java-send-email.html">Java send email</a>
</div>
<div class="panel-body">
<a href="/j2ee/remember-me.html">Remember me</a>
</div>
<div class="panel-body">
<a href="/j2ee/java-create-verification-code.html">Verification code</a>
</div>
<div class="panel-body">
<a href="/j2ee/google-oauth.html">Google OAuth 2.0</a>
</div>
<div class="panel-body">
<a href="/j2ee/ajax-long-polling.html">AJAX Long Polling</a>
</div>
<div class="panel-body">
<a href="/j2ee/websocket.html">WebSocket</a>
</div>
</div>
<!--Python-->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Python</h3>
</div>
<div class="panel-body">
<a href="python/python-regex.html">Python Regex</a>
</div>
</div>
</div>
</div>
</div>
<hr>
<footer class="text-center">
<div class="container">
<div class="row">
<div class="col-xs-12">
<p>Copyright © 2017 - 2018 CODEXE. All rights reserved.</p>
</div>
</div>
</div>
</footer>
</body>
</html>