diff --git a/README.md b/README.md index 909cedb..f3e061e 100644 --- a/README.md +++ b/README.md @@ -2,25 +2,16 @@ [![CircleCI](https://circleci.com/gh/softwareneedsyou/softwareneedsyou/tree/develop.svg?style=shield)](https://circleci.com/gh/softwareneedsyou/softwareneedsyou/tree/develop) Ce depôt constitue la partie logiciel du projet [Software Needs You](https://github.com/softwareneedstou). -La partie serveur est accessible sur [ce dépôt github](https://github.com/softwareneedsyou/softwareneedsyou-server.git) +La partie serveur est accessible sur [ce dépôt github](https://github.com/softwareneedsyou/softwareneedsyou-server) ## Setup Ce projet utilise [gradle](https://gradle.org/) comme système de build. Pour compiler et lancer le programme une fois le dépôt cloné: ```bash -gradle build -gradle run +gradle build run ``` -Le fichier executable `gradlew` est un wrapper générer automatiquement par gradle qui permet de télécharger le -version utilisée pour qu'elle soit utilisée en local. - -Lors de modifications de gradle, vérifier la configuration avec la commande `gradle check` qui ne nécessite -aucune compilation. - -Un documentation exhaustive est disponible sur [leur site](https://docs.gradle.org/3.4.1/userguide/userguide.html#gsc.tab=0). - ## Git Le workflow git est le suivant: ```bash @@ -32,22 +23,63 @@ git checkout develop git checkout -b / #feature individuelle git checkout -b feature/ #feature commune ``` -Une fois la feature complétée, le merge sur la branche develop se fait via une -[pull-request](https://github.com/softwareneedsyou/softwareneedsyou/pulls), et un membre de l'organisation -review les changemnets avant d'accepter le merge. +Une fois la feature complétée, le merge sur la branche develop se fait via une [pull-request](https://github.com/softwareneedsyou/softwareneedsyou/pulls), et un membre de l'organisation review les changements avant d'accepter le merge. * Les merges sur la branches develop sont en fast-forward -* Les merges sur la branche master sont ponctuels et manuels. Se seront des commits de rebase, c'est à dire - qu'ils rassembleront tout les changements sous un seul commit. L'idéal est donc de les effectuer par - changement de version mineure. -* Les features sont discutées et décrites sur - [github](https://github.com/softwareneedsyou/softwareneedsyou/projects) +* Les merges sur la branche master sont ponctuels et manuels. Se seront des commits de rebase, c'est à dire qu'ils rassembleront tout les changements sous un seul commit. + L'idéal est donc de les effectuer par changement de version mineure. +* Les features sont discutées et décrites sur [github](https://github.com/softwareneedsyou/softwareneedsyou/projects) * Chaque pull-request répond à une issue qui correspond à une feature -## Documentation +## Gradle +>Le fichier executable `gradlew` est un wrapper générer automatiquement par gradle qui permet de télécharger la +version utilisée lors de l'init pour qu'elle soit utilisée en local. -### Gradle : Lsite des projets/modules +Une documentation exhaustive est disponible sur [leur site](https://docs.gradle.org/3.4.1/userguide/userguide.html). + +Globalement, Gradle s'utilise avec des "tâches" : `gradle `. + +### Configuration +Lors de modifications de gradle, vérifier la configuration avec la commande `gradle` ou `gradle help` qui ne nécessite +aucune compilation. + +### Liste des projets/modules Pour lister les projets ou moudles gradle : ```gradle projects```. -#### Gradle : libérer une release +### Libérer une release Pour ```compile``` ou ```install``` une relase, il suffit d'ajouter ```release``` dans les tâches de gradle. +```bash +gradle release +``` + +### Tâches +Pour voir la liste de toutes les tâches possible avec gradle : `gradle tasks --all`. +Les tâches de la forme `sub:task` est une tâche s'appliquant qu'au sous-module du même nom. + +#### Extra tasks Gradle +* Liste des jars du projet lors de la compilation : `gradle -q listJars` +* Debuggage : `gradle : :taskTree` pour voir les dépendances des tâches. +Un graph au format dot est aussi généré lors de la tâche `build` dans `/build/reports/visteg.dot`. +*Utilisation d'un plugin pour avoir cette fonctionnalité.* + +### Compilation +Pour compiler et tester le projet : `gradle build`, puis `gradle run` pour lancer l'application. + +### Modification de gradle +Lors de modifications de gradle, vérifier la configuration avec `gradle` ou `gradle help` (aucune compilation). + +## Documentation +### Javadoc +La génération de la javadoc se fait par les commandes : `gradle javadoc testJavadoc`. +L'emplacement de la documentation est déplacée dans `/docs` pour être utilisable directement avec *Github Pages*. + +### Git Hook +Il est nécessaire de configurer son git lors du développement du projet pour automatiser certaines tâches et éviter les oublies. + +#### Pré-commit +Il faut ajouter manuellement le(s) hook(s) dans git en local. +Pour cela, il suffit de lancer le script `install` dans le dossier `scripts` (`.bat` pour Windows et `.sh` pour Unix). +Le script est à lancer en tant qu'**administrateur** sous Windows. + +Le `pre-commit` s'occupe de : +* générer la documentation et ajouter les modifications diff --git a/build.gradle b/build.gradle index 84297d4..6999edb 100644 --- a/build.gradle +++ b/build.gradle @@ -6,11 +6,35 @@ * user guide available at https://docs.gradle.org/3.4.1/userguide/tutorial_java_projects.html */ +buildscript { + repositories { + jcenter() + maven { + url "https://plugins.gradle.org/m2/" + } + } + dependencies { + classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.3" + } +} +plugins { + id "cz.malohlava" version "1.0.2" +} +apply plugin: "com.dorongold.task-tree" + project.group = 'fr.esgi.projet.softwareneedsyou' -//allprojects pour le projet actuel et les projets en dépendance -//subprojects pour tous les projets en dépendance +def CUSTOM_GROUP = 'Custom' //tasks ... on console +// pour le projet actuel et les projets en dépendance +allprojects { + configure(taskTree) { + group = CUSTOM_GROUP + description 'Affiche l\'arbre des dépendances de la commande qui suit' + } +} + +// pour tous les projets en dépendance subprojects { // Apply the java plugin to add support for Java apply plugin: 'java' @@ -20,6 +44,12 @@ subprojects { //tasks.eclipse.dependsOn cleanEclipse //tasks.eclipseClasspath.dependsOn initProject //apply plugin: 'idea' + /*idea { + project { + jdkName = jdkLevel + languageLevel = jdkLevel + } + }*/ // Plugins de test apply plugin: 'findbugs' @@ -32,6 +62,12 @@ subprojects { // On spécifie la version de Java à utiliser sourceCompatibility = JavaVersion.VERSION_1_8 //1.8 targetCompatibility = JavaVersion.VERSION_1_8 //1.8 + + tasks.withType(JavaCompile) { + //targetCompatibility = jdkLevel + //sourceCompatibility = jdkLevel + options.encoding = 'UTF-8' + } // In this section you declare where to find the dependencies of your project repositories { @@ -42,6 +78,9 @@ subprojects { } ext { + docDir = "${rootProject.projectDir}/docs/${project.name}" + + //General lombockVersion = '1.16.+' //Logging @@ -59,6 +98,7 @@ subprojects { testCompile "junit:junit:$junitVersion" compileOnly "org.projectlombok:lombok:$lombockVersion" + //compile 'com.google.code.findbugs:annotations:3.0.1' } jar { @@ -77,6 +117,7 @@ subprojects { } task testsJar(type: Jar, dependsOn: testClasses) { + group BasePlugin.BUILD_GROUP description = 'Assembles a jar archive containing the test classes.' classifier = 'tests' //from sourceSets.test.classes @@ -84,24 +125,84 @@ subprojects { } task sourcesTestJar(type: Jar /*, dependsOn: testClasses*/) { + group = CUSTOM_GROUP description = 'Assembles a jar archive containing the test source classes.' classifier = 'test-sources' from sourceSets.test.allSource } task sourcesJar(type: Jar /*, dependsOn: classes*/) { + group = CUSTOM_GROUP description = 'Assembles a jar archive containing the main source classes.' classifier = 'sources' from sourceSets.main.allSource } + task listJars { + group CUSTOM_GROUP + description 'Liste tout les jars attachés à la config de compilation.' + doLast { + configurations.compile.each { File file -> println file.name } + } + } + + task javadocClean(type: Delete) { + group 'documentation' + description 'Deletes the (java)doc directory.' + delete docDir + "/javadoc" + //followSymlinks = true + } + javadoc.dependsOn javadocClean + + javadoc.destinationDir = file(docDir + "/javadoc") + //${projectDir}/docs/javadoc + + task testJavadocClean(type: Delete) { + group 'documentation' + description 'Deletes the test (java)doc directory.' + delete docDir + "/testjavadoc" + //followSymlinks = true + } + + // creating javadoc task for test code + task testJavadoc(type: Javadoc, dependsOn: testJavadocClean) { + group 'documentation' + description 'Generates Javadoc API documentation for the test source code.' + source = sourceSets.test.allJava + classpath = sourceSets.test.compileClasspath + // if not changed the destinationDir, the javadoc for production code is overridden. + destinationDir = file(docDir + "/testjavadoc") + //options.linkSource true + //options.links("http://docs.oracle.com/javase/8/docs/api/") + //failOnError false + } + + task javadocJar(type: Jar, dependsOn: javadoc) { + group 'documentation' + description 'Assembles a jar archive containing the main javadoc.' + classifier 'javadoc' + from javadoc.destinationDir + } + + task testJavadocJar(type: Jar, dependsOn: testJavadoc) { + group 'documentation' + description 'Assembles a jar archive containing the test javadoc.' + classifier 'test-javadoc' + from testJavadoc.destinationDir + } + artifacts { archives sourcesJar + archives javadocJar archives testsJar archives sourcesTestJar + archives testJavadocJar } - task release(description: 'fige une version avant son déploiement') {} + task release { + group CUSTOM_GROUP + description 'fige une version avant son déploiement' + } gradle.taskGraph.whenReady {taskGraph -> if (taskGraph.hasTask(release)) { @@ -120,6 +221,7 @@ subprojects { } tasks.withType(FindBugs) { + group = 'Reporting' reports { xml.enabled = false html.enabled = true @@ -152,4 +254,11 @@ subprojects { }) } } + + task prepareGit { + group = CUSTOM_GROUP //BasePlugin.BUILD_GROUP // Or use 'build' + description = 'Prépare le dépôt git avant commit' + dependsOn javadoc + dependsOn testJavadoc + } } diff --git a/docs/.keep b/docs/.keep new file mode 100644 index 0000000..e69de29 diff --git a/docs/api/javadoc/allclasses-frame.html b/docs/api/javadoc/allclasses-frame.html new file mode 100644 index 0000000..7366c24 --- /dev/null +++ b/docs/api/javadoc/allclasses-frame.html @@ -0,0 +1,19 @@ + + + + + +All Classes (api 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/api/javadoc/allclasses-noframe.html b/docs/api/javadoc/allclasses-noframe.html new file mode 100644 index 0000000..f678922 --- /dev/null +++ b/docs/api/javadoc/allclasses-noframe.html @@ -0,0 +1,19 @@ + + + + + +All Classes (api 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/api/javadoc/constant-values.html b/docs/api/javadoc/constant-values.html new file mode 100644 index 0000000..8b640db --- /dev/null +++ b/docs/api/javadoc/constant-values.html @@ -0,0 +1,120 @@ + + + + + +Constant Field Values (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Constant Field Values

+

Contents

+
+ + + + + + diff --git a/docs/api/javadoc/deprecated-list.html b/docs/api/javadoc/deprecated-list.html new file mode 100644 index 0000000..8feacfc --- /dev/null +++ b/docs/api/javadoc/deprecated-list.html @@ -0,0 +1,120 @@ + + + + + +Deprecated List (api 0.0.1-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + + + +
+ + + + diff --git a/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/Tmp.html b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/Tmp.html new file mode 100644 index 0000000..7bb3211 --- /dev/null +++ b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/Tmp.html @@ -0,0 +1,267 @@ + + + + + +Tmp (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + + +
+
fr.esgi.projet.softwareneedsyou.api
+

Class Tmp

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • fr.esgi.projet.softwareneedsyou.api.Tmp
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class Tmp
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Tmp() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetGreeting() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Tmp

        +
        public Tmp()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getGreeting

        +
        public java.lang.String getGreeting()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + diff --git a/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-frame.html b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-frame.html new file mode 100644 index 0000000..d245b4e --- /dev/null +++ b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-frame.html @@ -0,0 +1,20 @@ + + + + + +fr.esgi.projet.softwareneedsyou.api (api 0.0.1-SNAPSHOT API) + + + + + +

fr.esgi.projet.softwareneedsyou.api

+
+

Classes

+ +
+ + diff --git a/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-summary.html b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-summary.html new file mode 100644 index 0000000..b814044 --- /dev/null +++ b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-summary.html @@ -0,0 +1,138 @@ + + + + + +fr.esgi.projet.softwareneedsyou.api (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Package fr.esgi.projet.softwareneedsyou.api

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    Tmp 
    +
  • +
+
+ + + + + + diff --git a/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-tree.html b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-tree.html new file mode 100644 index 0000000..2b71de8 --- /dev/null +++ b/docs/api/javadoc/fr/esgi/projet/softwareneedsyou/api/package-tree.html @@ -0,0 +1,129 @@ + + + + + +fr.esgi.projet.softwareneedsyou.api Class Hierarchy (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package fr.esgi.projet.softwareneedsyou.api

+
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.api.Tmp
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/api/javadoc/help-doc.html b/docs/api/javadoc/help-doc.html new file mode 100644 index 0000000..1c6479a --- /dev/null +++ b/docs/api/javadoc/help-doc.html @@ -0,0 +1,217 @@ + + + + + +API Help (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ + + + + + diff --git a/docs/api/javadoc/index-all.html b/docs/api/javadoc/index-all.html new file mode 100644 index 0000000..35ac2f5 --- /dev/null +++ b/docs/api/javadoc/index-all.html @@ -0,0 +1,143 @@ + + + + + +Index (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
F G T  + + +

F

+
+
fr.esgi.projet.softwareneedsyou.api - package fr.esgi.projet.softwareneedsyou.api
+
 
+
+ + + +

G

+
+
getGreeting() - Method in class fr.esgi.projet.softwareneedsyou.api.Tmp
+
 
+
+ + + +

T

+
+
Tmp - Class in fr.esgi.projet.softwareneedsyou.api
+
 
+
Tmp() - Constructor for class fr.esgi.projet.softwareneedsyou.api.Tmp
+
 
+
+F G T 
+ + + + + + diff --git a/docs/api/javadoc/index.html b/docs/api/javadoc/index.html new file mode 100644 index 0000000..dae79ff --- /dev/null +++ b/docs/api/javadoc/index.html @@ -0,0 +1,72 @@ + + + + + +api 0.0.1-SNAPSHOT API + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="fr/esgi/projet/softwareneedsyou/api/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/api/javadoc/overview-tree.html b/docs/api/javadoc/overview-tree.html new file mode 100644 index 0000000..cc060b9 --- /dev/null +++ b/docs/api/javadoc/overview-tree.html @@ -0,0 +1,133 @@ + + + + + +Class Hierarchy (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.api.Tmp
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/api/javadoc/package-list b/docs/api/javadoc/package-list new file mode 100644 index 0000000..5257d6a --- /dev/null +++ b/docs/api/javadoc/package-list @@ -0,0 +1 @@ +fr.esgi.projet.softwareneedsyou.api diff --git a/docs/api/javadoc/script.js b/docs/api/javadoc/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/docs/api/javadoc/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/api/javadoc/stylesheet.css b/docs/api/javadoc/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/docs/api/javadoc/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/docs/api/testjavadoc/allclasses-frame.html b/docs/api/testjavadoc/allclasses-frame.html new file mode 100644 index 0000000..a96ec5a --- /dev/null +++ b/docs/api/testjavadoc/allclasses-frame.html @@ -0,0 +1,19 @@ + + + + + +All Classes (api 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/api/testjavadoc/allclasses-noframe.html b/docs/api/testjavadoc/allclasses-noframe.html new file mode 100644 index 0000000..f6bb1a5 --- /dev/null +++ b/docs/api/testjavadoc/allclasses-noframe.html @@ -0,0 +1,19 @@ + + + + + +All Classes (api 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/api/testjavadoc/constant-values.html b/docs/api/testjavadoc/constant-values.html new file mode 100644 index 0000000..d911309 --- /dev/null +++ b/docs/api/testjavadoc/constant-values.html @@ -0,0 +1,120 @@ + + + + + +Constant Field Values (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Constant Field Values

+

Contents

+
+ + + + + + diff --git a/docs/api/testjavadoc/deprecated-list.html b/docs/api/testjavadoc/deprecated-list.html new file mode 100644 index 0000000..b5c58cb --- /dev/null +++ b/docs/api/testjavadoc/deprecated-list.html @@ -0,0 +1,120 @@ + + + + + +Deprecated List (api 0.0.1-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + + + +
+ + + + diff --git a/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/TmpTest.html b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/TmpTest.html new file mode 100644 index 0000000..45e9b23 --- /dev/null +++ b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/TmpTest.html @@ -0,0 +1,267 @@ + + + + + +TmpTest (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + + +
+
fr.esgi.projet.softwareneedsyou.api
+

Class TmpTest

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • fr.esgi.projet.softwareneedsyou.api.TmpTest
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class TmpTest
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      TmpTest() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidtestTmpHasAGreeting() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        TmpTest

        +
        public TmpTest()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        testTmpHasAGreeting

        +
        public void testTmpHasAGreeting()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + diff --git a/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-frame.html b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-frame.html new file mode 100644 index 0000000..f0fd9e2 --- /dev/null +++ b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-frame.html @@ -0,0 +1,20 @@ + + + + + +fr.esgi.projet.softwareneedsyou.api (api 0.0.1-SNAPSHOT API) + + + + + +

fr.esgi.projet.softwareneedsyou.api

+
+

Classes

+ +
+ + diff --git a/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-summary.html b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-summary.html new file mode 100644 index 0000000..6539697 --- /dev/null +++ b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-summary.html @@ -0,0 +1,138 @@ + + + + + +fr.esgi.projet.softwareneedsyou.api (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Package fr.esgi.projet.softwareneedsyou.api

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    TmpTest 
    +
  • +
+
+ + + + + + diff --git a/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-tree.html b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-tree.html new file mode 100644 index 0000000..2c160a1 --- /dev/null +++ b/docs/api/testjavadoc/fr/esgi/projet/softwareneedsyou/api/package-tree.html @@ -0,0 +1,129 @@ + + + + + +fr.esgi.projet.softwareneedsyou.api Class Hierarchy (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package fr.esgi.projet.softwareneedsyou.api

+
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.api.TmpTest
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/api/testjavadoc/help-doc.html b/docs/api/testjavadoc/help-doc.html new file mode 100644 index 0000000..8f77dcd --- /dev/null +++ b/docs/api/testjavadoc/help-doc.html @@ -0,0 +1,217 @@ + + + + + +API Help (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ + + + + + diff --git a/docs/api/testjavadoc/index-all.html b/docs/api/testjavadoc/index-all.html new file mode 100644 index 0000000..1b28a78 --- /dev/null +++ b/docs/api/testjavadoc/index-all.html @@ -0,0 +1,137 @@ + + + + + +Index (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
F T  + + +

F

+
+
fr.esgi.projet.softwareneedsyou.api - package fr.esgi.projet.softwareneedsyou.api
+
 
+
+ + + +

T

+
+
testTmpHasAGreeting() - Method in class fr.esgi.projet.softwareneedsyou.api.TmpTest
+
 
+
TmpTest - Class in fr.esgi.projet.softwareneedsyou.api
+
 
+
TmpTest() - Constructor for class fr.esgi.projet.softwareneedsyou.api.TmpTest
+
 
+
+F T 
+ + + + + + diff --git a/docs/api/testjavadoc/index.html b/docs/api/testjavadoc/index.html new file mode 100644 index 0000000..928aec7 --- /dev/null +++ b/docs/api/testjavadoc/index.html @@ -0,0 +1,72 @@ + + + + + +api 0.0.1-SNAPSHOT API + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="fr/esgi/projet/softwareneedsyou/api/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/api/testjavadoc/overview-tree.html b/docs/api/testjavadoc/overview-tree.html new file mode 100644 index 0000000..b07749f --- /dev/null +++ b/docs/api/testjavadoc/overview-tree.html @@ -0,0 +1,133 @@ + + + + + +Class Hierarchy (api 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.api.TmpTest
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/api/testjavadoc/package-list b/docs/api/testjavadoc/package-list new file mode 100644 index 0000000..5257d6a --- /dev/null +++ b/docs/api/testjavadoc/package-list @@ -0,0 +1 @@ +fr.esgi.projet.softwareneedsyou.api diff --git a/docs/api/testjavadoc/script.js b/docs/api/testjavadoc/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/docs/api/testjavadoc/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/api/testjavadoc/stylesheet.css b/docs/api/testjavadoc/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/docs/api/testjavadoc/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/docs/app/javadoc/allclasses-frame.html b/docs/app/javadoc/allclasses-frame.html new file mode 100644 index 0000000..543f370 --- /dev/null +++ b/docs/app/javadoc/allclasses-frame.html @@ -0,0 +1,19 @@ + + + + + +All Classes (app 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/app/javadoc/allclasses-noframe.html b/docs/app/javadoc/allclasses-noframe.html new file mode 100644 index 0000000..457e6a8 --- /dev/null +++ b/docs/app/javadoc/allclasses-noframe.html @@ -0,0 +1,19 @@ + + + + + +All Classes (app 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/app/javadoc/constant-values.html b/docs/app/javadoc/constant-values.html new file mode 100644 index 0000000..8f10911 --- /dev/null +++ b/docs/app/javadoc/constant-values.html @@ -0,0 +1,120 @@ + + + + + +Constant Field Values (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Constant Field Values

+

Contents

+
+ + + + + + diff --git a/docs/app/javadoc/deprecated-list.html b/docs/app/javadoc/deprecated-list.html new file mode 100644 index 0000000..2021733 --- /dev/null +++ b/docs/app/javadoc/deprecated-list.html @@ -0,0 +1,120 @@ + + + + + +Deprecated List (app 0.0.1-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + + + +
+ + + + diff --git a/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/App.html b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/App.html new file mode 100644 index 0000000..0a35ba6 --- /dev/null +++ b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/App.html @@ -0,0 +1,280 @@ + + + + + +App (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + + +
+
fr.esgi.projet.softwareneedsyou
+

Class App

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • fr.esgi.projet.softwareneedsyou.App
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class App
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      App() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetGreeting() 
      static voidmain(java.lang.String[] args) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        App

        +
        public App()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getGreeting

        +
        public java.lang.String getGreeting()
        +
      • +
      + + + +
        +
      • +

        main

        +
        public static void main(java.lang.String[] args)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + diff --git a/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-frame.html b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-frame.html new file mode 100644 index 0000000..ce820b8 --- /dev/null +++ b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-frame.html @@ -0,0 +1,20 @@ + + + + + +fr.esgi.projet.softwareneedsyou (app 0.0.1-SNAPSHOT API) + + + + + +

fr.esgi.projet.softwareneedsyou

+
+

Classes

+ +
+ + diff --git a/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-summary.html b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-summary.html new file mode 100644 index 0000000..f541f06 --- /dev/null +++ b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-summary.html @@ -0,0 +1,138 @@ + + + + + +fr.esgi.projet.softwareneedsyou (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Package fr.esgi.projet.softwareneedsyou

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    App 
    +
  • +
+
+ + + + + + diff --git a/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-tree.html b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-tree.html new file mode 100644 index 0000000..4fcad27 --- /dev/null +++ b/docs/app/javadoc/fr/esgi/projet/softwareneedsyou/package-tree.html @@ -0,0 +1,129 @@ + + + + + +fr.esgi.projet.softwareneedsyou Class Hierarchy (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package fr.esgi.projet.softwareneedsyou

+
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.App
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/app/javadoc/help-doc.html b/docs/app/javadoc/help-doc.html new file mode 100644 index 0000000..b21da08 --- /dev/null +++ b/docs/app/javadoc/help-doc.html @@ -0,0 +1,217 @@ + + + + + +API Help (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ + + + + + diff --git a/docs/app/javadoc/index-all.html b/docs/app/javadoc/index-all.html new file mode 100644 index 0000000..c973831 --- /dev/null +++ b/docs/app/javadoc/index-all.html @@ -0,0 +1,151 @@ + + + + + +Index (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
A F G M  + + +

A

+
+
App - Class in fr.esgi.projet.softwareneedsyou
+
 
+
App() - Constructor for class fr.esgi.projet.softwareneedsyou.App
+
 
+
+ + + +

F

+
+
fr.esgi.projet.softwareneedsyou - package fr.esgi.projet.softwareneedsyou
+
 
+
+ + + +

G

+
+
getGreeting() - Method in class fr.esgi.projet.softwareneedsyou.App
+
 
+
+ + + +

M

+
+
main(String[]) - Static method in class fr.esgi.projet.softwareneedsyou.App
+
 
+
+A F G M 
+ + + + + + diff --git a/docs/app/javadoc/index.html b/docs/app/javadoc/index.html new file mode 100644 index 0000000..a3de8c0 --- /dev/null +++ b/docs/app/javadoc/index.html @@ -0,0 +1,72 @@ + + + + + +app 0.0.1-SNAPSHOT API + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="fr/esgi/projet/softwareneedsyou/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/app/javadoc/overview-tree.html b/docs/app/javadoc/overview-tree.html new file mode 100644 index 0000000..7232f0b --- /dev/null +++ b/docs/app/javadoc/overview-tree.html @@ -0,0 +1,133 @@ + + + + + +Class Hierarchy (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.App
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/app/javadoc/package-list b/docs/app/javadoc/package-list new file mode 100644 index 0000000..dca450f --- /dev/null +++ b/docs/app/javadoc/package-list @@ -0,0 +1 @@ +fr.esgi.projet.softwareneedsyou diff --git a/docs/app/javadoc/script.js b/docs/app/javadoc/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/docs/app/javadoc/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/app/javadoc/stylesheet.css b/docs/app/javadoc/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/docs/app/javadoc/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/docs/app/testjavadoc/allclasses-frame.html b/docs/app/testjavadoc/allclasses-frame.html new file mode 100644 index 0000000..ad59cb6 --- /dev/null +++ b/docs/app/testjavadoc/allclasses-frame.html @@ -0,0 +1,19 @@ + + + + + +All Classes (app 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/app/testjavadoc/allclasses-noframe.html b/docs/app/testjavadoc/allclasses-noframe.html new file mode 100644 index 0000000..c6e7dd8 --- /dev/null +++ b/docs/app/testjavadoc/allclasses-noframe.html @@ -0,0 +1,19 @@ + + + + + +All Classes (app 0.0.1-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/docs/app/testjavadoc/constant-values.html b/docs/app/testjavadoc/constant-values.html new file mode 100644 index 0000000..fb09bc1 --- /dev/null +++ b/docs/app/testjavadoc/constant-values.html @@ -0,0 +1,120 @@ + + + + + +Constant Field Values (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Constant Field Values

+

Contents

+
+ + + + + + diff --git a/docs/app/testjavadoc/deprecated-list.html b/docs/app/testjavadoc/deprecated-list.html new file mode 100644 index 0000000..332db65 --- /dev/null +++ b/docs/app/testjavadoc/deprecated-list.html @@ -0,0 +1,120 @@ + + + + + +Deprecated List (app 0.0.1-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + + + +
+ + + + diff --git a/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/AppTest.html b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/AppTest.html new file mode 100644 index 0000000..5abef49 --- /dev/null +++ b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/AppTest.html @@ -0,0 +1,267 @@ + + + + + +AppTest (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + + +
+
fr.esgi.projet.softwareneedsyou
+

Class AppTest

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • fr.esgi.projet.softwareneedsyou.AppTest
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class AppTest
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      AppTest() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidtestAppHasAGreeting() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AppTest

        +
        public AppTest()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        testAppHasAGreeting

        +
        public void testAppHasAGreeting()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + diff --git a/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-frame.html b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-frame.html new file mode 100644 index 0000000..5d27ada --- /dev/null +++ b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-frame.html @@ -0,0 +1,20 @@ + + + + + +fr.esgi.projet.softwareneedsyou (app 0.0.1-SNAPSHOT API) + + + + + +

fr.esgi.projet.softwareneedsyou

+
+

Classes

+ +
+ + diff --git a/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-summary.html b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-summary.html new file mode 100644 index 0000000..5a57123 --- /dev/null +++ b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-summary.html @@ -0,0 +1,138 @@ + + + + + +fr.esgi.projet.softwareneedsyou (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Package fr.esgi.projet.softwareneedsyou

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    AppTest 
    +
  • +
+
+ + + + + + diff --git a/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-tree.html b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-tree.html new file mode 100644 index 0000000..be8dfe8 --- /dev/null +++ b/docs/app/testjavadoc/fr/esgi/projet/softwareneedsyou/package-tree.html @@ -0,0 +1,129 @@ + + + + + +fr.esgi.projet.softwareneedsyou Class Hierarchy (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package fr.esgi.projet.softwareneedsyou

+
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.AppTest
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/app/testjavadoc/help-doc.html b/docs/app/testjavadoc/help-doc.html new file mode 100644 index 0000000..fd2a020 --- /dev/null +++ b/docs/app/testjavadoc/help-doc.html @@ -0,0 +1,217 @@ + + + + + +API Help (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ + + + + + diff --git a/docs/app/testjavadoc/index-all.html b/docs/app/testjavadoc/index-all.html new file mode 100644 index 0000000..97d93c7 --- /dev/null +++ b/docs/app/testjavadoc/index-all.html @@ -0,0 +1,143 @@ + + + + + +Index (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
A F T  + + +

A

+
+
AppTest - Class in fr.esgi.projet.softwareneedsyou
+
 
+
AppTest() - Constructor for class fr.esgi.projet.softwareneedsyou.AppTest
+
 
+
+ + + +

F

+
+
fr.esgi.projet.softwareneedsyou - package fr.esgi.projet.softwareneedsyou
+
 
+
+ + + +

T

+
+
testAppHasAGreeting() - Method in class fr.esgi.projet.softwareneedsyou.AppTest
+
 
+
+A F T 
+ + + + + + diff --git a/docs/app/testjavadoc/index.html b/docs/app/testjavadoc/index.html new file mode 100644 index 0000000..a2cb8e3 --- /dev/null +++ b/docs/app/testjavadoc/index.html @@ -0,0 +1,72 @@ + + + + + +app 0.0.1-SNAPSHOT API + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="fr/esgi/projet/softwareneedsyou/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/docs/app/testjavadoc/overview-tree.html b/docs/app/testjavadoc/overview-tree.html new file mode 100644 index 0000000..7494e5e --- /dev/null +++ b/docs/app/testjavadoc/overview-tree.html @@ -0,0 +1,133 @@ + + + + + +Class Hierarchy (app 0.0.1-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • fr.esgi.projet.softwareneedsyou.AppTest
    • +
    +
  • +
+
+ + + + + + diff --git a/docs/app/testjavadoc/package-list b/docs/app/testjavadoc/package-list new file mode 100644 index 0000000..dca450f --- /dev/null +++ b/docs/app/testjavadoc/package-list @@ -0,0 +1 @@ +fr.esgi.projet.softwareneedsyou diff --git a/docs/app/testjavadoc/script.js b/docs/app/testjavadoc/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/docs/app/testjavadoc/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/docs/app/testjavadoc/stylesheet.css b/docs/app/testjavadoc/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/docs/app/testjavadoc/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/scripts/install.bat b/scripts/install.bat new file mode 100644 index 0000000..4e410ac --- /dev/null +++ b/scripts/install.bat @@ -0,0 +1,4 @@ +cd /d "%~dp0" +cd .. +mklink .git\hooks\pre-commit scripts\pre-commit.bat +pause diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100644 index 0000000..6e0922a --- /dev/null +++ b/scripts/install.sh @@ -0,0 +1,3 @@ +chmod +x pre-commit.sh +cd .. +ln -s scripts/pre-commit.sh .git/hooks/pre-commit diff --git a/scripts/pre-commit.bat b/scripts/pre-commit.bat new file mode 100644 index 0000000..96c35ba --- /dev/null +++ b/scripts/pre-commit.bat @@ -0,0 +1,2 @@ +echo "%CD%" +"C:/Program Files/Git/usr/bin/sh.exe" pre-commit.sh diff --git a/scripts/pre-commit.sh b/scripts/pre-commit.sh new file mode 100644 index 0000000..327769b --- /dev/null +++ b/scripts/pre-commit.sh @@ -0,0 +1,13 @@ +#!/bin/sh +echo "Starting generate javadoc ..." +pwd +gradle prepareGit +if [ $? -gt 0 ] + then + exit $? +fi +git add docs + +echo "Press any key for exit ..." +read a +exit $? diff --git a/visteg.svg b/visteg.svg new file mode 100644 index 0000000..5709882 --- /dev/null +++ b/visteg.svg @@ -0,0 +1,680 @@ + + +compile + + +:api:build + +:api:build + + +:api:assemble + +:api:assemble + + +:api:build->:api:assemble + + + + +:api:check + +:api:check + + +:api:build->:api:check + + + + +:api:jar + +:api:jar + + +:api:assemble->:api:jar + + + + +:api:javadocJar + +:api:javadocJar + + +:api:assemble->:api:javadocJar + + + + +:api:sourcesJar + + +:api:sourcesJar + + +:api:assemble->:api:sourcesJar + + + + +:api:sourcesTestJar + + +:api:sourcesTestJar + + +:api:assemble->:api:sourcesTestJar + + + + +:api:testJavadocJar + +:api:testJavadocJar + + +:api:assemble->:api:testJavadocJar + + + + +:api:testsJar + +:api:testsJar + + +:api:assemble->:api:testsJar + + + + +:api:findbugsMain + +:api:findbugsMain + + +:api:check->:api:findbugsMain + + + + +:api:findbugsTest + +:api:findbugsTest + + +:api:check->:api:findbugsTest + + + + +:api:test + +:api:test + + +:api:check->:api:test + + + + +:api:classes + +:api:classes + + +:api:jar->:api:classes + + + + +:api:javadoc + +:api:javadoc + + +:api:javadocJar->:api:javadoc + + + + +:api:testJavadoc + +:api:testJavadoc + + +:api:testJavadocJar->:api:testJavadoc + + + + +:api:testClasses + +:api:testClasses + + +:api:testsJar->:api:testClasses + + + + +:api:findbugsMain->:api:classes + + + + +:api:findbugsTest->:api:classes + + + + +:api:findbugsTest->:api:testClasses + + + + +:api:test->:api:classes + + + + +:api:test->:api:testClasses + + + + +:api:compileJava + + +:api:compileJava + + +:api:classes->:api:compileJava + + + + +:api:processResources + + +:api:processResources + + +:api:classes->:api:processResources + + + + +:api:javadoc->:api:classes + + + + +:api:javadocClean + + +:api:javadocClean + + +:api:javadoc->:api:javadocClean + + + + +:api:testJavadoc->:api:classes + + + + +:api:testJavadocClean + + +:api:testJavadocClean + + +:api:testJavadoc->:api:testJavadocClean + + + + +:api:compileTestJava + +:api:compileTestJava + + +:api:testClasses->:api:compileTestJava + + + + +:api:processTestResources + + +:api:processTestResources + + +:api:testClasses->:api:processTestResources + + + + +:api:compileTestJava->:api:classes + + + + +:app:build + +:app:build + + +:app:assemble + +:app:assemble + + +:app:build->:app:assemble + + + + +:app:check + +:app:check + + +:app:build->:app:check + + + + +:app:distTar + +:app:distTar + + +:app:assemble->:app:distTar + + + + +:app:distZip + +:app:distZip + + +:app:assemble->:app:distZip + + + + +:app:jar + +:app:jar + + +:app:assemble->:app:jar + + + + +:app:javadocJar + +:app:javadocJar + + +:app:assemble->:app:javadocJar + + + + +:app:sourcesJar + + +:app:sourcesJar + + +:app:assemble->:app:sourcesJar + + + + +:app:sourcesTestJar + + +:app:sourcesTestJar + + +:app:assemble->:app:sourcesTestJar + + + + +:app:testJavadocJar + +:app:testJavadocJar + + +:app:assemble->:app:testJavadocJar + + + + +:app:testsJar + +:app:testsJar + + +:app:assemble->:app:testsJar + + + + +:app:findbugsMain + +:app:findbugsMain + + +:app:check->:app:findbugsMain + + + + +:app:findbugsTest + +:app:findbugsTest + + +:app:check->:app:findbugsTest + + + + +:app:test + +:app:test + + +:app:check->:app:test + + + + +:app:distTar->:api:jar + + + + +:app:distTar->:app:jar + + + + +:app:startScripts + +:app:startScripts + + +:app:distTar->:app:startScripts + + + + +:app:distZip->:api:jar + + + + +:app:distZip->:app:jar + + + + +:app:distZip->:app:startScripts + + + + +:app:classes + +:app:classes + + +:app:jar->:app:classes + + + + +:app:javadoc + +:app:javadoc + + +:app:javadocJar->:app:javadoc + + + + +:app:testJavadoc + +:app:testJavadoc + + +:app:testJavadocJar->:app:testJavadoc + + + + +:app:testClasses + +:app:testClasses + + +:app:testsJar->:app:testClasses + + + + +:app:findbugsMain->:api:jar + + + + +:app:findbugsMain->:app:classes + + + + +:app:findbugsTest->:api:jar + + + + +:app:findbugsTest->:app:classes + + + + +:app:findbugsTest->:app:testClasses + + + + +:app:test->:api:jar + + + + +:app:test->:app:classes + + + + +:app:test->:app:testClasses + + + + +:app:startScripts->:api:jar + + + + +:app:startScripts->:app:jar + + + + +:app:compileJava + +:app:compileJava + + +:app:classes->:app:compileJava + + + + +:app:processResources + + +:app:processResources + + +:app:classes->:app:processResources + + + + +:app:javadoc->:api:jar + + + + +:app:javadoc->:api:javadoc + + + + +:app:javadoc->:app:classes + + + + +:app:javadocClean + + +:app:javadocClean + + +:app:javadoc->:app:javadocClean + + + + +:app:testJavadoc->:api:jar + + + + +:app:testJavadoc->:app:classes + + + + +:app:testJavadocClean + + +:app:testJavadocClean + + +:app:testJavadoc->:app:testJavadocClean + + + + +:app:compileTestJava + +:app:compileTestJava + + +:app:testClasses->:app:compileTestJava + + + + +:app:processTestResources + + +:app:processTestResources + + +:app:testClasses->:app:processTestResources + + + + +:app:compileJava->:api:jar + + + + +:app:compileTestJava->:api:jar + + + + +:app:compileTestJava->:app:classes + + + + +:app:run + +:app:run + + +:app:run->:api:jar + + + + +:app:run->:app:classes + + + + +:api:prepareGit + +:api:prepareGit + + +:api:prepareGit->:api:javadoc + + + + +:api:prepareGit->:api:testJavadoc + + + + +:app:prepareGit + +:app:prepareGit + + +:app:prepareGit->:app:javadoc + + + + +:app:prepareGit->:app:testJavadoc + + + + + \ No newline at end of file