Package org.infoglue.cms.entities.management

Source Code of org.infoglue.cms.entities.management.LanguageVO

/* ===============================================================================
*
* Part of the InfoGlue Content Management Platform (www.infoglue.org)
*
* ===============================================================================
*
*  Copyright (C)
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 2, as published by the
* Free Software Foundation. See the file LICENSE.html for more information.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY, including the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc. / 59 Temple
* Place, Suite 330 / Boston, MA 02111-1307 / USA.
*
* ===============================================================================
*/

package org.infoglue.cms.entities.management;

import java.util.Locale;

import org.infoglue.cms.entities.kernel.BaseEntityVO;
import org.infoglue.cms.entities.management.impl.simple.LanguageImpl;
import org.infoglue.cms.exception.ConstraintException;
import org.infoglue.cms.util.ConstraintExceptionBuffer;
import org.infoglue.cms.util.validators.ValidatorFactory;
import org.infoglue.deliver.controllers.kernel.impl.simple.LanguageDeliveryController;

/**
* This entity represents a language
*/

public class LanguageVO implements BaseEntityVO
{
    private java.lang.Integer languageId;
    private java.lang.String name;
    private java.lang.String languageCode;
    private java.lang.String charset = "ISO-8859-1";
   
  public String toString()
  { 
    return getName();
  }

  /**
   * @see org.infoglue.cms.entities.kernel.BaseEntityVO#getId()
   */
  public Integer getId() {
    return getLanguageId();
  }

    public java.lang.Integer getLanguageId()
    {
        return this.languageId;
    }
               
    public void setLanguageId(java.lang.Integer languageId)
    {
        this.languageId = languageId;
    }
   
    public java.lang.String getName()
    {
        return this.name;
    }

  public java.lang.String getLanguageCode()
  {
    return this.languageCode;
  }

  public java.lang.String getCharset()
  {
    return this.charset;
  }
               
    public void setName(java.lang.String name) throws ConstraintException
    {
      ConstraintExceptionBuffer ceb = new ConstraintExceptionBuffer();
      ValidatorFactory.createStringValidator("Language.name", true, 4, 20).validate(name, ceb);

     ceb.throwIfNotEmpty();
        this.name = name;
    }
     
    public void setLanguageCode(java.lang.String languageCode) throws ConstraintException
    {     
      ConstraintExceptionBuffer ceb = new ConstraintExceptionBuffer();
      ValidatorFactory.createStringValidator("Language.languageCode", true, 2, 6).validate(languageCode, ceb);

     ceb.throwIfNotEmpty();
        this.languageCode = languageCode;
    }
 
  public void setCharset(java.lang.String charset)
  {
    this.charset = charset;
  }

  /**
   * @see org.infoglue.cms.entities.kernel.BaseEntityVO#validate()
   */

  public ConstraintExceptionBuffer validate()
  {
      ConstraintExceptionBuffer ceb = new ConstraintExceptionBuffer();
      if (name != null) ValidatorFactory.createStringValidator("Language.name", true, 4, 20, true, LanguageImpl.class, this.getId(), null).validate(name, ceb);
      if (languageCode != null) ValidatorFactory.createStringValidator("Language.languageCode", true, 2, 6, true, LanguageImpl.class, this.getId(), null).validate(languageCode, ceb);
    return ceb;
  }
  
  public boolean equals(Object o)
  {
      boolean equals = false;
     
      if(o instanceof LanguageVO)
      {
          LanguageVO languageVO = (LanguageVO)o;
          if(languageVO != null && languageVO.getLanguageId().equals(this.languageId))
              equals = true;
      }
     
      return equals;
  }
 
  public int hashCode()
  {
      return this.languageId.intValue();
  }

  /**
   * Returns the locale matching this language languageCode.
   * @return java.util.Locale
   */

  public Locale getLocale()
  {
    return LanguageDeliveryController.getLanguageDeliveryController().getLocaleWithCode(this.languageCode);
  }

  /**
   * Returns the display name for this language
   * @return
   */
 
  public String getDisplayLanguage()
  {
      Locale locale = getLocale();
      return locale.getDisplayLanguage();
  }

  /**
   * Returns the localized display name for this language
   * @return
   */

  public String getLocalizedDisplayLanguage()
  {
      Locale locale = getLocale();
      return locale.getDisplayLanguage(locale);
  }

  /**
   * Returns the localized display name for the given language
   * @return
   */

  public String getLocalizedDisplayLanguage(Locale displayLocale)
  {
      Locale locale = getLocale();
      return locale.getDisplayLanguage(displayLocale);
  }

}
        
TOP

Related Classes of org.infoglue.cms.entities.management.LanguageVO

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.