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

com.g2forge.enigma.document.Block Maven / Gradle / Ivy

Go to download

Models, parsers and renderers for common documentation formats. This library is helpful for generating documentation and translating formats like MD, wikitext and office documents.

There is a newer version: 0.0.11
Show newest version
package com.g2forge.enigma.document;

import java.util.List;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.Singular;

@Data
@Builder
@AllArgsConstructor
public class Block implements IBlock {
	public enum Type {
		Document,
		Paragraph,
		ListItem;
	}

	protected final Type type;

	@Singular
	protected final List contents;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy