/*
 * Copyright (c) 2015 NeoDoc SARL. All rights reserved.
 * 
 * Author: Fabián Mandelbaum
 * 
 * Based on DeleteSelectionOrJoinBlockOrDeleteChar command
 * which has Copyright (c) 2000-2013 by Pixware SARL,
 * which is part of the XMLmind XML Editor project.
 */
package com.calenco.xxe.ext;

import com.xmlmind.xmledit.cmd.CommandChoice;
import com.xmlmind.xmledit.edit.CommandEntry;

public class CustomDeleteSelectionOrJoinBlockOrDeleteChar extends
		CommandChoice {

	public CustomDeleteSelectionOrJoinBlockOrDeleteChar() {
		super(new CommandEntry[] {
				new CommandEntry(new CustomDelete(), "%0 %1"),
				new CommandEntry(new DeleteEmptyText(), "%0"),
				new CommandEntry(new JoinBlock(), "%0"),
				new CommandEntry(new DeleteChar(), "%0")
		});
	}

}
