Examples of CssClassFa


Examples of org.apache.isis.applib.annotation.CssClassFa

        super(FeatureType.OBJECTS_ONLY);
    }

    @Override
    public void process(final ProcessClassContext processClassContext) {
        final CssClassFa annotation = Annotations.getAnnotation(processClassContext.getCls(), CssClassFa.class);
        FacetUtil.addFacet(create(annotation, processClassContext.getFacetHolder()));
    }
View Full Code Here

Examples of org.apache.isis.applib.annotation.CssClassFa

        final Properties properties = pcwmp.metadataProperties("cssClassFa");
        return properties != null ? new CssClassFaFacetOnMemberFromProperties(properties, holder) : null;
    }

    private CssClassFaFacet createFromAnnotationIfPossible(final ProcessMethodContext processMethodContext) {
        final CssClassFa annotation = Annotations.getAnnotation(processMethodContext.getMethod(), CssClassFa.class);
        return annotation != null ? new CssClassFaFacetOnMemberAnnotation(annotation.value(), processMethodContext.getFacetHolder()) : null;
    }
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.