Compare commits
1 Commits
c9dbe7dc3b
...
Ben8AvrilA
| Author | SHA1 | Date | |
|---|---|---|---|
| 255ad3809c |
BIN
UML/classes.png
BIN
UML/classes.png
Binary file not shown.
|
Before Width: | Height: | Size: 240 KiB After Width: | Height: | Size: 283 KiB |
@@ -3,6 +3,7 @@
|
|||||||
namespace ecoparasite {
|
namespace ecoparasite {
|
||||||
|
|
||||||
class Application {
|
class Application {
|
||||||
|
+ {static} main
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace ecoparasite.input {
|
namespace ecoparasite.input {
|
||||||
@@ -119,30 +120,70 @@ namespace ecoparasite {
|
|||||||
|
|
||||||
namespace ecoparasite.completion {
|
namespace ecoparasite.completion {
|
||||||
class Completion {
|
class Completion {
|
||||||
+ {static} completeColumnsMoyenne
|
+ {static} completeColumnsMoyenne()
|
||||||
+ {static} completeColumnsLinear
|
+ {static} completeColumnsLinear()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace ecoparasite.nettoyage {
|
namespace ecoparasite.nettoyage {
|
||||||
class Nettoyage {
|
class Nettoyage {
|
||||||
+ {static} nettoieColumnsMoyenne
|
+ {static} nettoieColumns()
|
||||||
+ {static} nettoieColumnsLinear
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace ecoparasite.unknown {
|
namespace ecoparasite.representation {
|
||||||
|
class ValeursXY {
|
||||||
note top of ecoparasite.unknown : Ce paquet est temporaire pour des classes / interfaces qui devront avoir plus de déclinaisons.
|
- double x
|
||||||
|
- double y
|
||||||
class DataCleaner {
|
+ {static} HashSet<ValeursXY> convertToXY()
|
||||||
+ DataCleaner()
|
}
|
||||||
+ String toString()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DataCompletion {
|
namespace ecoparasite.svg {
|
||||||
+ void exception()
|
class SVGFactory {
|
||||||
|
+ {static} createSVG()
|
||||||
|
+ {static} createSVGCode()
|
||||||
|
+ {static} createFile()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class Coordonnees {
|
||||||
|
- double x
|
||||||
|
- double y
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace ecoparasite.svg.elements {
|
||||||
|
|
||||||
|
class ElementsFactory {
|
||||||
|
+ {static} SVGAxes()
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract class Element {
|
||||||
|
+ {abstract} toSVG()
|
||||||
|
}
|
||||||
|
|
||||||
|
Element o--> ecoparasite.svg.Coordonnees : # coordonnees
|
||||||
|
|
||||||
|
class Circle extends Element {
|
||||||
|
- int rayon
|
||||||
|
- String color
|
||||||
|
}
|
||||||
|
|
||||||
|
class Line extends Element {
|
||||||
|
- int lineWidth
|
||||||
|
- String color
|
||||||
|
}
|
||||||
|
|
||||||
|
class Text extends Element {
|
||||||
|
- String text
|
||||||
|
- String color
|
||||||
|
- int size
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Line o--> ecoparasite.svg.Coordonnees : # coordonneesB
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class NettoyageTest {
|
|||||||
|
|
||||||
System.out.println(testp);
|
System.out.println(testp);
|
||||||
|
|
||||||
testp = Nettoyage.nettoieColumnsMoyenne( testp, getInfes, setInfes );
|
// testp = Nettoyage.nettoieColumnsMoyenne( testp, getInfes, setInfes );
|
||||||
|
|
||||||
System.out.println(testp);
|
System.out.println(testp);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user