1 2 3 4 5 6 7 8 9 10
package ch.tests; public class Main { public static void main(String[] args) { MyObject mo = new MyObject(); mo.myInt = 13; mo.setMyInt(13); } }