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

com.softicar.platform.common.ui.wiki.ISimpleWikiParserCallback Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.ui.wiki;

import com.softicar.platform.common.ui.color.IColor;

public interface ISimpleWikiParserCallback {

	void addText(String text);

	void addWhitespace(String whitespace);

	void addNewLine();

	void beginParagraph();

	void endParagraph();

	void beginBold();

	void endBold();

	void beginItalic();

	void endItalic();

	void beginColor(IColor color);

	void endColor();

	void beginHeadLine(int level);

	void endHeadLine(int level);

	void beginUnorderedList();

	void endUnorderedList();

	void beginOrderedList();

	void endOrderedList();

	void beginListItem();

	void endListItem();

	void beginSection(int level);

	void endSection();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy