Skip to content
Snippets Groups Projects
Commit 91e0cb69 authored by Heyd's avatar Heyd
Browse files

Modification code + UML

parent 9f7e24b3
No related merge requests found
......@@ -49,7 +49,7 @@ public class ChainedList implements Structure {
return this.cursor.currentLink.next;
}
public Link getPreviousLink(Link currentLink)
public Link getPreviousLink()
{
return this.cursor.currentLink.next;
}
......
......@@ -8,7 +8,7 @@ import defaultpackage.Structure;
public class LinkedListC implements Structure
{
LinkedList<Integer> linkedList;
private LinkedList<Integer> linkedList;
public LinkedListC(int nbValue)
{
......
......@@ -6,7 +6,7 @@ import defaultpackage.Structure;
public class Table implements Structure
{
Integer[] tab;
protected Integer[] tab;
public Table(int nbValue)
{
......
No preview for this file type
No preview for this file type
No preview for this file type
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment