Examples of BindableMetadata


Examples of org.carrot2.util.attribute.BindableMetadata

    public void testMetadataAvailable()
    {
        Class<? extends IDocumentSource> c = getComponentClass();
        Assume.assumeTrue(c.getAnnotation(Bindable.class) != null);

        BindableMetadata metadata = BindableMetadata.forClassWithParents(c);
        assertNotNull(metadata);
        assertNotNull(metadata.getAttributeMetadata());
    }
View Full Code Here

Examples of org.carrot2.util.attribute.BindableMetadata

    public void testMetadataAvailable()
    {
        Class<? extends IClusteringAlgorithm> c = getComponentClass();
        Assume.assumeTrue(c.getAnnotation(Bindable.class) != null);
       
        BindableMetadata metadata = BindableMetadata.forClassWithParents(c);
        assertNotNull(metadata);
        assertNotNull(metadata.getAttributeMetadata());
    }
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.