Package de.plushnikov.sub

Examples of de.plushnikov.sub.SubBeanX


        System.out.println(bean.getName());
        System.out.println(bean.getVorName());
        System.out.println(bean.getBirthsday());
        System.out.println(bean.toString());

        SubBeanX subBean = new SubBeanX();
        subBean.setName(10120);
        subBean.setHasACat(true);
//        subBean.setVorNameB("sssdw");
//        subBean.setGeburtsdatum(new Date());
//        subBean.calcMe2(123);

        System.out.println(subBean.getName());
        System.out.println(subBean.getVorName());
        System.out.println(subBean.getGeburtsdatum2());
        System.out.println(subBean);

        FieldGetter clazz = new FieldGetter();

        clazz.getIntProperty();
View Full Code Here

TOP

Related Classes of de.plushnikov.sub.SubBeanX

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.