Package org.apache.tapestry.annotations

Examples of org.apache.tapestry.annotations.ContentType


    {
        ClassTransformation ct = mockClassTransformation();
        MutableComponentModel model = mockMutableComponentModel();
        String value = "text/pdf";

        ContentType annotation = newMock(ContentType.class);

        train_getAnnotation(ct, ContentType.class, annotation);

        expect(annotation.value()).andReturn(value);

        model.setMeta(TapestryConstants.RESPONSE_CONTENT_TYPE, value);

        replay();
View Full Code Here


    {
        ClassTransformation ct = mockClassTransformation();
        MutableComponentModel model = mockMutableComponentModel();
        String value = "text/pdf";

        ContentType annotation = newMock(ContentType.class);

        train_getAnnotation(ct, ContentType.class, annotation);

        expect(annotation.value()).andReturn(value);

        model.setMeta(TapestryConstants.RESPONSE_CONTENT_TYPE, value);

        replay();
View Full Code Here

*/
public class ContentTypeWorker implements ComponentClassTransformWorker
{
    public void transform(ClassTransformation transformation, MutableComponentModel model)
    {
        ContentType annotation = transformation.getAnnotation(ContentType.class);

        if (annotation != null) model.setMeta(TapestryConstants.RESPONSE_CONTENT_TYPE, annotation.value());
    }
View Full Code Here

*/
public class ContentTypeWorker implements ComponentClassTransformWorker
{
    public void transform(ClassTransformation transformation, MutableComponentModel model)
    {
        ContentType annotation = transformation.getAnnotation(ContentType.class);

        if (annotation != null) model.setMeta(TapestryConstants.RESPONSE_CONTENT_TYPE, annotation.value());
    }
View Full Code Here

TOP

Related Classes of org.apache.tapestry.annotations.ContentType

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.