Examples of ClassPropertyAdapter


Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

        String id = "mycomponentid";

        ComponentResources resources = mockComponentResources();
        Component container = mockComponent();
        PropertyAccess access = newPropertyAccess();
        ClassPropertyAdapter classPropertyAdapter = newClassPropertyAdapter();
        PropertyAdapter propertyAdapter = newPropertyAdapter();
        BindingSource bindingSource = mockBindingSource();
        Binding binding = mockBinding();
        ComponentResources containerResources = mockComponentResources();
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void property_adapter_write_only_property()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(Bean.class);
        PropertyAdapter pa = cpa.getPropertyAdapter("writeOnly");

        assertFalse(pa.isRead());
        assertTrue(pa.isUpdate());

        assertEquals(pa.getWriteMethod(), findMethod(Bean.class, "setWriteOnly"));
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void class_property_adapter_returns_null_for_unknown_property()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(Bean.class);

        assertNull(cpa.getPropertyAdapter("google"));
    }
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void access_to_property_type()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(Bean.class);

        assertEquals(cpa.getPropertyAdapter("value").getType(), int.class);
        assertEquals(cpa.getPropertyAdapter("readOnly").getType(), String.class);
        assertEquals(cpa.getPropertyAdapter("writeOnly").getType(), boolean.class);
    }
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void property_names()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(Bean.class);

        assertEquals(cpa.getPropertyNames(), Arrays.asList(
                "class",
                "readOnly",
                "value",
                "writeOnly"));
    }
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void super_interface_methods_inherited_by_sub_interface()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(SubInterface.class);

        assertEquals(cpa.getPropertyNames(), Arrays.asList(
                "grandParentProperty",
                "parentProperty",
                "subProperty"));
    }
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void indexed_properties_are_ignored()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(BeanWithIndexedProperty.class);

        assertEquals(cpa.getPropertyNames(), Arrays.asList("class", "primitiveProperty"));
    }
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void clear_wipes_internal_cache()
    {
        ClassPropertyAdapter cpa1 = _access.getAdapter(Bean.class);

        assertSame(cpa1.getBeanType(), Bean.class);

        ClassPropertyAdapter cpa2 = _access.getAdapter(Bean.class);

        assertSame(cpa2, cpa1);

        _access.clearCache();

        ClassPropertyAdapter cpa3 = _access.getAdapter(Bean.class);

        assertNotSame(cpa3, cpa1);
    }
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void class_property_adapter_toString()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(Bean.class);

        assertEquals(cpa.toString(), "<ClassPropertyAdaptor " + CLASS_NAME
                + "$Bean : class, readOnly, value, writeOnly>");
    }
View Full Code Here

Examples of org.apache.tapestry.ioc.services.ClassPropertyAdapter

    }

    @Test
    public void property_adapter_read_only_property()
    {
        ClassPropertyAdapter cpa = _access.getAdapter(Bean.class);
        PropertyAdapter pa = cpa.getPropertyAdapter("readOnly");

        assertTrue(pa.isRead());
        assertFalse(pa.isUpdate());

        assertNull(pa.getWriteMethod());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.