Skip to content

Commit

Permalink
javadoc test
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Lincoln committed Jun 17, 2020
1 parent 5a1d5e5 commit 2adfea1
Show file tree
Hide file tree
Showing 24 changed files with 86 additions and 100 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
PACKAGE=com.usp.corrida
DEST=docs/
SRC=core/src/
TITLE="Corrida Aritmetica - docs"

doc:
rm -rf docs/
javadoc -noindex -notree -nohelp -nodeprecated -d $(DEST) -sourcepath $(SRC) $(PACKAGE) $(PACKAGE).logic $(PACKAGE).screens $(PACKAGE).utils
javadoc -doctitle $(TITLE) -windowtitle $(TITLE) -noindex -notree -nohelp -nodeprecated -d $(DEST) -sourcepath $(SRC) $(PACKAGE) $(PACKAGE).logic $(PACKAGE).screens $(PACKAGE).utils
16 changes: 11 additions & 5 deletions core/src/com/usp/corrida/Core.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@
import com.usp.corrida.utils.Random;

/**
* Lorem ipsum dolor sit amet
* Classe principal do jogo.
*/
public class Core extends com.badlogic.gdx.Game {

/**
* Variable description
*/
public float width;
public float height;

Expand All @@ -44,6 +41,9 @@ public class Core extends com.badlogic.gdx.Game {
// Debug
Boolean showFPS = false;

/**
* Faz as primeiras configurações do programa.
*/
@Override
public void create () {
// Camera building
Expand All @@ -70,6 +70,9 @@ public void create () {
setScreen(titleScreen);
}

/**
* Cuida de toda a renderização do jogo.
*/
@Override
public void render () {
Gdx.gl.glClearColor(69/255f, 186/255f, 230/255f, 1);
Expand All @@ -90,7 +93,10 @@ public void render () {

batch.end();
}


/**
* Descarrega todos os recursos.
*/
@Override
public void dispose () {
batch.dispose();
Expand Down
30 changes: 0 additions & 30 deletions core/src/test/java/com/usp/corrida/GameTest.java

This file was deleted.

4 changes: 2 additions & 2 deletions docs/allclasses-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>All Classes</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>All Classes (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions docs/allclasses-noframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>All Classes</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>All Classes (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
Expand Down
28 changes: 17 additions & 11 deletions docs/com/usp/corrida/Core.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>Core</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>Core (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Core";
parent.document.title="Core (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down Expand Up @@ -111,7 +111,7 @@ <h2 title="Class Core" class="title">Class Core</h2>
<br>
<pre>public class <span class="typeNameLabel">Core</span>
extends com.badlogic.gdx.Game</pre>
<div class="block">Lorem ipsum dolor sit amet</div>
<div class="block">Classe principal do jogo.</div>
</li>
</ul>
</div>
Expand Down Expand Up @@ -160,9 +160,7 @@ <h3>Field Summary</h3>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>float</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#width">width</a></span></code>
<div class="block">Variable description</div>
</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#width">width</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
Expand Down Expand Up @@ -198,15 +196,21 @@ <h3>Method Summary</h3>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#create--">create</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#create--">create</a></span>()</code>
<div class="block">Faz as primeiras configurações do programa.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#dispose--">dispose</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#dispose--">dispose</a></span>()</code>
<div class="block">Descarrega todos os recursos.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#render--">render</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/usp/corrida/Core.html#render--">render</a></span>()</code>
<div class="block">Cuida de toda a renderização do jogo.</div>
</td>
</tr>
</table>
<ul class="blockList">
Expand Down Expand Up @@ -300,7 +304,6 @@ <h4>titleScreen</h4>
<li class="blockList">
<h4>width</h4>
<pre>public&nbsp;float width</pre>
<div class="block">Variable description</div>
</li>
</ul>
</li>
Expand Down Expand Up @@ -335,6 +338,7 @@ <h3>Method Detail</h3>
<li class="blockList">
<h4>create</h4>
<pre>public&nbsp;void&nbsp;create()</pre>
<div class="block">Faz as primeiras configurações do programa.</div>
</li>
</ul>
<a name="dispose--">
Expand All @@ -344,6 +348,7 @@ <h4>create</h4>
<li class="blockList">
<h4>dispose</h4>
<pre>public&nbsp;void&nbsp;dispose()</pre>
<div class="block">Descarrega todos os recursos.</div>
</li>
</ul>
<a name="render--">
Expand All @@ -353,6 +358,7 @@ <h4>dispose</h4>
<li class="blockList">
<h4>render</h4>
<pre>public&nbsp;void&nbsp;render()</pre>
<div class="block">Cuida de toda a renderização do jogo.</div>
</li>
</ul>
</li>
Expand Down
6 changes: 3 additions & 3 deletions docs/com/usp/corrida/logic/Character.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>Character</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>Character (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Character";
parent.document.title="Character (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down
6 changes: 3 additions & 3 deletions docs/com/usp/corrida/logic/Game.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>Game</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>Game (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Game";
parent.document.title="Game (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down
4 changes: 2 additions & 2 deletions docs/com/usp/corrida/logic/package-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>com.usp.corrida.logic</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>com.usp.corrida.logic (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand Down
6 changes: 3 additions & 3 deletions docs/com/usp/corrida/logic/package-summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>com.usp.corrida.logic</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>com.usp.corrida.logic (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.usp.corrida.logic";
parent.document.title="com.usp.corrida.logic (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down
4 changes: 2 additions & 2 deletions docs/com/usp/corrida/package-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>com.usp.corrida</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>com.usp.corrida (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
Expand Down
8 changes: 4 additions & 4 deletions docs/com/usp/corrida/package-summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>com.usp.corrida</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>com.usp.corrida (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.usp.corrida";
parent.document.title="com.usp.corrida (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down Expand Up @@ -80,7 +80,7 @@ <h1 title="Package" class="title">Package&nbsp;com.usp.corrida</h1>
<tr class="altColor">
<td class="colFirst"><a href="../../../com/usp/corrida/Core.html" title="class in com.usp.corrida">Core</a></td>
<td class="colLast">
<div class="block">Lorem ipsum dolor sit amet</div>
<div class="block">Classe principal do jogo.</div>
</td>
</tr>
</tbody>
Expand Down
6 changes: 3 additions & 3 deletions docs/com/usp/corrida/screens/GameScreen.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>GameScreen</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>GameScreen (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GameScreen";
parent.document.title="GameScreen (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down
6 changes: 3 additions & 3 deletions docs/com/usp/corrida/screens/TitleScreen.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>TitleScreen</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>TitleScreen (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TitleScreen";
parent.document.title="TitleScreen (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down
4 changes: 2 additions & 2 deletions docs/com/usp/corrida/screens/package-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>com.usp.corrida.screens</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>com.usp.corrida.screens (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand Down
6 changes: 3 additions & 3 deletions docs/com/usp/corrida/screens/package-summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:36:51 BRT 2020 -->
<title>com.usp.corrida.screens</title>
<!-- Generated by javadoc (1.8.0_252) on Tue Jun 16 21:57:07 BRT 2020 -->
<title>com.usp.corrida.screens (Corrida Aritmetica - docs)</title>
<meta name="date" content="2020-06-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
Expand All @@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.usp.corrida.screens";
parent.document.title="com.usp.corrida.screens (Corrida Aritmetica - docs)";
}
}
catch(err) {
Expand Down
Loading

0 comments on commit 2adfea1

Please sign in to comment.