Examples of MappingAttribute


Examples of org.teiid.query.mapping.xml.MappingAttribute

        attribute.setOptional(true);
        assertTrue(attribute.isOptional());
    }
   
    public void testNormalizeText() {
        MappingAttribute attribute = new MappingAttribute("Test"); //$NON-NLS-1$
        assertEquals(MappingNodeConstants.Defaults.DEFAULT_NORMALIZE_TEXT, attribute.getNormalizeText());

        attribute.setNormalizeText("foo"); //$NON-NLS-1$
        assertEquals("foo", attribute.getNormalizeText()); //$NON-NLS-1$
    }   
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.