![JAR search and dependency download from the Maven repository](/logo.png)
com.helger.html.jscode.JSCommentMultiLine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-html-jscode Show documentation
Show all versions of ph-html-jscode Show documentation
Java library to programmtically create JavaScript in a structured way
The newest version!
/**
* Copyright (C) 2014-2016 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.html.jscode;
import java.util.Map;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.collection.ext.CommonsHashMap;
import com.helger.commons.collection.ext.CommonsLinkedHashMap;
import com.helger.commons.collection.ext.ICommonsMap;
import com.helger.commons.collection.ext.ICommonsOrderedMap;
import com.helger.commons.equals.EqualsHelper;
import com.helger.commons.hashcode.HashCodeGenerator;
import com.helger.commons.string.ToStringGenerator;
import com.helger.html.js.IJSWriterSettings;
/**
* JSDoc comment.
*
* @author Philip Helger
*/
public class JSCommentMultiLine extends JSCommentPart implements IJSGeneratable
{
private static final String INDENT = " * ";
/** list of @-param tags */
private final ICommonsOrderedMap m_aParams = new CommonsLinkedHashMap <> ();
/** list of xdoclets */
private final ICommonsOrderedMap > m_aXDoclets = new CommonsLinkedHashMap <> ();
/** The @-return tag part. */
private JSCommentPart m_aReturn;
/** The @-deprecated tag */
private JSCommentPart m_aDeprecated;
public JSCommentMultiLine ()
{}
@Override
@Nonnull
public JSCommentMultiLine append (@Nullable final Object aObj)
{
add (aObj);
return this;
}
/**
* Append a text to a @-param tag to the JSDoc
*
* @param sParam
* Param name
* @return Comment part
*/
@Nonnull
public JSCommentPart addParam (@Nonnull final String sParam)
{
ValueEnforcer.notNull (sParam, "Param");
JSCommentPart aPart = m_aParams.get (sParam);
if (aPart == null)
{
aPart = new JSCommentPart ();
m_aParams.put (sParam, aPart);
}
return aPart;
}
/**
* Append a text to an @-param tag.
*
* @param aParam
* Param name
* @return Comment part
*/
@Nonnull
public JSCommentPart addParam (@Nonnull final JSVar aParam)
{
return addParam (aParam.name ());
}
/**
* Appends a text to @return tag.
*
* @return Comment part
*/
@Nonnull
public JSCommentPart addReturn ()
{
if (m_aReturn == null)
m_aReturn = new JSCommentPart ();
return m_aReturn;
}
/**
* add an @-deprecated tag to the JSDoc, with the associated message.
*
* @return Comment part
*/
@Nonnull
public JSCommentPart addDeprecated ()
{
if (m_aDeprecated == null)
m_aDeprecated = new JSCommentPart ();
return m_aDeprecated;
}
/**
* add an xdoclet.
*
* @param sName
* xdoclet name
* @return XDoclect to be filled
*/
@Nonnull
public ICommonsMap addXdoclet (@Nonnull final String sName)
{
ValueEnforcer.notNull (sName, "Name");
ICommonsMap aMap = m_aXDoclets.get (sName);
if (aMap == null)
{
aMap = new CommonsHashMap <> ();
m_aXDoclets.put (sName, aMap);
}
return aMap;
}
/**
* add an xdoclet.
*
* @param sName
* xdoclet name
* @param aAttributes
* Attributes to add
* @return XDoclect to be filled
*/
@Nonnull
public ICommonsMap addXdoclet (@Nonnull final String sName,
@Nonnull final Map aAttributes)
{
final ICommonsMap p = addXdoclet (sName);
p.putAll (aAttributes);
return p;
}
/**
* add an xdoclet.
*
* @param sName
* xdoclet name
* @param sAttributeName
* Attributes name
* @param sAttributeValue
* Attribute value
* @return XDoclect to be filled
*/
@Nonnull
public ICommonsMap addXdoclet (@Nonnull final String sName,
@Nonnull final String sAttributeName,
@Nonnull final String sAttributeValue)
{
final ICommonsMap p = addXdoclet (sName);
p.put (sAttributeName, sAttributeValue);
return p;
}
public void generate (@Nonnull final JSFormatter aFormatter)
{
if (aFormatter.getSettings ().isGenerateComments ())
{
aFormatter.plain ("/**").nlFix ();
// Main content start
format (aFormatter, " * ");
if (m_aParams.isNotEmpty () || m_aReturn != null || m_aDeprecated != null || m_aXDoclets.isNotEmpty ())
{
aFormatter.plain (" * ").nlFix ();
for (final Map.Entry aEntry : m_aParams.entrySet ())
{
aFormatter.plain (" * @param ").plain (aEntry.getKey ()).nlFix ();
aEntry.getValue ().format (aFormatter, INDENT);
}
if (m_aReturn != null)
{
aFormatter.plain (" * @return").nlFix ();
m_aReturn.format (aFormatter, INDENT);
}
if (m_aDeprecated != null)
{
aFormatter.plain (" * @deprecated").nlFix ();
m_aDeprecated.format (aFormatter, INDENT);
}
for (final Map.Entry > aEntry : m_aXDoclets.entrySet ())
{
aFormatter.plain (" * @").plain (aEntry.getKey ());
if (aEntry.getValue () != null)
{
for (final Map.Entry aEntry2 : aEntry.getValue ().entrySet ())
aFormatter.plain (" ").plain (aEntry2.getKey ()).plain ("= \"").plain (aEntry2.getValue ()).plain ("\"");
}
aFormatter.nlFix ();
}
}
aFormatter.plain (" */").nlFix ();
}
}
@Nonnull
public String getJSCode (@Nullable final IJSWriterSettings aSettings)
{
return JSPrinter.getAsString (aSettings, this);
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (o == null || !getClass ().equals (o.getClass ()))
return false;
final JSCommentMultiLine rhs = (JSCommentMultiLine) o;
return m_aParams.equals (rhs.m_aParams) &&
m_aXDoclets.equals (rhs.m_aXDoclets) &&
EqualsHelper.equals (m_aReturn, rhs.m_aReturn) &&
EqualsHelper.equals (m_aDeprecated, rhs.m_aDeprecated);
}
@Override
public int hashCode ()
{
return new HashCodeGenerator (this).append (m_aParams)
.append (m_aXDoclets)
.append (m_aReturn)
.append (m_aDeprecated)
.getHashCode ();
}
@Override
public String toString ()
{
return new ToStringGenerator (this).append ("params", m_aParams)
.append ("xdoclets", m_aXDoclets)
.append ("return", m_aReturn)
.append ("deprecated", m_aDeprecated)
.toString ();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy