001/* 002 * Copyright c 2018 Rusi Popov, MDA Tools.net All rights reserved. 003 * 004 * This program and the accompanying materials are made available under the terms of the 005 * Eclipse Public License v2.0 which accompanies this distribution, and is available at 006 * http://www.eclipse.org/legal/epl-v20.html 007 */ 008package net.mdatools.modelant.core.operation.format; 009 010/** 011 * Wrap and format the text to be included in javadoc (multi-line) comments for class features 012 * (methods and fields). 013 * 014 * @author Rusi Popov (popovr@mdatools.net) 015 */ 016public class FormatWrapTextJavaDoc extends FormatWrapText { 017 018 /** 019 * 020 */ 021 public FormatWrapTextJavaDoc() { 022 super(" * ", ""); 023 } 024}