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

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

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

import java.io.Serializable;

/**
 * Defines a headline of the text.
 * 

* Can have an arbitrary level assigned, but useful probably between 1 and 6. */ public class CDARichHeading extends CDARichBlock implements Serializable { private final int level; /** * Create a heading block, describing a level elements deep nested heading. * * @param level a number indicating the level of this heading. */ public CDARichHeading(int level) { this.level = level; } /** * @return the current nesting level of this heading. */ public int getLevel() { return level; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy