All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.czyzby.lml.parser.impl.attribute.container.ContainerClipLmlAttribute Maven / Gradle / Ivy

package com.github.czyzby.lml.parser.impl.attribute.container;

import com.badlogic.gdx.scenes.scene2d.ui.Container;
import com.github.czyzby.lml.parser.LmlParser;
import com.github.czyzby.lml.parser.tag.LmlAttribute;
import com.github.czyzby.lml.parser.tag.LmlTag;

/** See {@link Container#setClip(boolean)}. Mapped to "clip".
 *
 * @author MJ */
public class ContainerClipLmlAttribute implements LmlAttribute> {
    @Override
    @SuppressWarnings("unchecked")
    public Class> getHandledType() {
        // Double cast as there were a problem with generics - SomeClass.class cannot be returned as
        // >, even though casting never throws ClassCastException in the end.
        return (Class>) (Object) Container.class;
    }

    @Override
    public void process(final LmlParser parser, final LmlTag tag, final Container actor,
            final String rawAttributeData) {
        actor.setClip(parser.parseBoolean(rawAttributeData, actor));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy