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

com.contentful.java.cda.rich.CDARichBlock Maven / Gradle / Ivy

There is a newer version: 9.1.0
Show newest version
package com.contentful.java.cda.rich;

import java.io.Serializable;
import java.util.LinkedList;
import java.util.List;

/**
 * A collection of several nodes.
 */
public class CDARichBlock extends CDARichNode implements Serializable {
  final List content = new LinkedList<>();

  /**
   * @return a changeable list of contents of this block
   */
  public List getContent() {
    return content;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy