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

com.helger.photon.atom.AbstractFeedText Maven / Gradle / Ivy

/*
 * Copyright (C) 2014-2023 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.photon.atom;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.xml.XMLConstants;

import com.helger.commons.annotation.Nonempty;
import com.helger.commons.string.StringHelper;
import com.helger.xml.microdom.IMicroElement;
import com.helger.xml.microdom.MicroElement;

public abstract class AbstractFeedText extends AbstractFeedElement
{
  public static final EFeedTextType DEFAULT_TYPE = EFeedTextType.TEXT;

  private final EFeedTextType m_eType;
  private final String m_sText;

  public AbstractFeedText (@Nullable final EFeedTextType eType, @Nullable final String sText)
  {
    m_eType = eType == null ? DEFAULT_TYPE : eType;
    m_sText = sText;
  }

  @Nonnull
  @Nonempty
  public final String getType ()
  {
    return m_eType.getType ();
  }

  @Nullable
  public final String getText ()
  {
    return m_sText;
  }

  public final IMicroElement getAsElement (final String sElementName)
  {
    final IMicroElement aElement = new MicroElement (CFeed.XMLNS_ATOM, sElementName);
    aElement.setAttribute ("type", getType ());
    aElement.appendText (m_sText == null ? "" : m_sText);
    if (StringHelper.hasText (getLanguage ()))
      aElement.setAttribute (XMLConstants.XML_NS_URI, "lang", getLanguage ());
    return aElement;
  }

  public final boolean isValid ()
  {
    return true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy