@@ -16,7 +16,7 @@ public class Project {
|
||||
private String _designation;
|
||||
private String _path;
|
||||
|
||||
private AppThinkerGrid _grid;
|
||||
private UmlDiagram _umlDiagram;
|
||||
|
||||
private List<Class> _classes;
|
||||
private List<Link> _links;
|
||||
@@ -34,7 +34,7 @@ public class Project {
|
||||
_path = null;
|
||||
_classes = new ArrayList<Class>();
|
||||
_links = new ArrayList<Link>();
|
||||
_grid = new AppThinkerGrid(this);
|
||||
_umlDiagram = new UmlDiagram(this);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -57,14 +57,15 @@ public class Project {
|
||||
_path = path;
|
||||
_classes = classes;
|
||||
_links = links;
|
||||
_umlDiagram = new UmlDiagram(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Récupère l'objet grille du projet.
|
||||
* @return L'objet grille du projet.
|
||||
* Récupère le diagramme UML associé au projet.
|
||||
* @return Le diagramme UML associé au projet.
|
||||
*/
|
||||
public AppThinkerGrid getGrid(){
|
||||
return this._grid;
|
||||
public UmlDiagram getUmlDiagram(){
|
||||
return this._umlDiagram;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user