CCB Premier Import

This commit is contained in:
Christian Cunat-Brulé
2018-07-23 10:52:48 +02:00
commit f55475a23f
765 changed files with 209793 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package gestionStocks;
public class C1 {
private int a ;
private float b ;
public int getA() {
return a;
}
public void setA(int a) {
if (a > 0)
this.a = a;
}
public float getB() {
return b;
}
public void setB(float b) {
this.b = b;
}
}