Skip to content

Instantly share code, notes, and snippets.

@ababol
ababol / gist:5455085
Created April 24, 2013 20:00
Dépendance locale maven.
<dependency>
<groupId>berlios</groupId>
<artifactId>jmathplot</artifactId>
<version>39</version>
<type>jar</type>
<scope>system</scope>
<systemPath>${project.basedir}/libs/berlios/jmathplot.jar</systemPath>
</dependency>
@Override
public void notifyViews() {
int size = 0;
LinkedList<IndividualUI> visualSample = new LinkedList<>(); // liste d'individu à refresh
Iterator it = individuals.iterator();
while (it.hasNext() && size < this.observableVolume){
Individual individual = (Individual) it.next();
visualSample.add(individual.getUI());
size++;