Package com.totsp.gwittir.client.testmodel

Examples of com.totsp.gwittir.client.testmodel.TestFileDeclaredIntrospection


    public String getModuleName() {
        return "com.totsp.gwittir.GwittirTest";
    }

    public void testFileDeclared() throws Exception {
        TestFileDeclaredIntrospection bean = new TestFileDeclaredIntrospection();
        Property p = Introspector.INSTANCE.getDescriptor(bean).getProperty("stringProperty");
        System.out.println( "String property: "+p);
        assertTrue( p.getName().equals("stringProperty") );
        p = Introspector.INSTANCE.getDescriptor(bean).getProperty("intProperty");
        assertTrue( p.getName().equals("intProperty"));
View Full Code Here

TOP

Related Classes of com.totsp.gwittir.client.testmodel.TestFileDeclaredIntrospection

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.