blob: ed332bc16f5eeb783df06b105c3ae2aa536aea10 [file] [log] [blame]
package com.airbnb.lottie.model.content;
import com.airbnb.lottie.LottieDrawable;
import com.airbnb.lottie.animation.content.Content;
import com.airbnb.lottie.animation.content.ContentGroup;
import com.airbnb.lottie.model.layer.BaseLayer;
import java.util.Arrays;
import java.util.List;
public class ShapeGroup implements ContentModel {
private final String name;
private final List<ContentModel> items;
private final boolean hidden;
public ShapeGroup(String name, List<ContentModel> items, boolean hidden) {
this.name = name;
this.items = items;
this.hidden = hidden;
}
public String getName() {
return name;
}
public List<ContentModel> getItems() {
return items;
}
public boolean isHidden() {
return hidden;
}
@Override public Content toContent(LottieDrawable drawable, BaseLayer layer) {
return new ContentGroup(drawable, layer, this);
}
@Override public String toString() {
return "ShapeGroup{" + "name='" + name + "\' Shapes: " + Arrays.toString(items.toArray()) + '}';
}
}