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

org.sweble.wikitext.engine.config.I18nAliasImpl Maven / Gradle / Ivy

Go to download

A minimal engine using the Sweble Wikitext Parser to process articles in the context of a MediaWiki-like configuration.

There is a newer version: 3.1.9
Show newest version
/**
 * Copyright 2011 The Open Source Research Group,
 *                University of Erlangen-Nürnberg
 *
 * 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 org.sweble.wikitext.engine.config;

import java.io.Serializable;
import java.util.Collection;
import java.util.Comparator;
import java.util.Set;
import java.util.TreeSet;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

@XmlType(
		name = "alias",
		propOrder = { "id", "caseSensitive", "aliases" })
public class I18nAliasImpl
		implements
			I18nAlias,
			Serializable,
			Comparable
{
	private static final long serialVersionUID = 1L;
	
	private String id;
	
	private Boolean caseSensitive;
	
	private Set aliases;
	
	// =========================================================================
	
	/**
	 * Only for de-serialization, not part of public API
	 */
	protected I18nAliasImpl()
	{
	}
	
	public I18nAliasImpl(
			String id,
			boolean caseSensitive,
			Collection aliases)
	{
		setId(id);
		setCaseSensitive(caseSensitive);
		setAliases(aliases);
	}
	
	// =========================================================================
	
	@Override
	@XmlAttribute
	public String getId()
	{
		return id;
	}
	
	/**
	 * Only for de-serialization, not part of public API
	 */
	public void setId(String id)
	{
		if (id == null)
			throw new IllegalArgumentException();
		if (this.id != null)
			throw new UnsupportedOperationException();
		this.id = id;
	}
	
	@Override
	@XmlAttribute
	public boolean isCaseSensitive()
	{
		return caseSensitive;
	}
	
	/**
	 * Only for de-serialization, not part of public API
	 */
	public void setCaseSensitive(boolean caseSensitive)
	{
		if (this.caseSensitive != null)
			throw new UnsupportedOperationException();
		this.caseSensitive = caseSensitive;
	}
	
	@Override
	@XmlElement(name = "alias")
	public Set getAliases()
	{
		if (aliases == null)
			aliases = new TreeSet();
		// Cannot return immutable aliases set since de-serialization uses this
		// method's return value to add aliases to the set.
		return aliases;
	}
	
	/**
	 * Only for de-serialization, not part of public API
	 */
	public void setAliases(Collection aliases)
	{
		if (aliases == null)
			throw new IllegalArgumentException();
		this.aliases = new TreeSet(
				new Comparator()
				{
					@Override
					public int compare(String o1, String o2)
					{
						return I18nAliasImpl.this.caseSensitive ?
								o1.compareTo(o2) :
								o1.compareToIgnoreCase(o2);
					}
				});
		this.aliases.addAll(aliases);
	}
	
	@Override
	public boolean hasAlias(String alias)
	{
		return aliases.contains(alias);
	}
	
	// =========================================================================
	
	@Override
	public int hashCode()
	{
		final int prime = 31;
		int result = 1;
		result = prime * result + ((aliases == null) ? 0 : aliases.hashCode());
		result = prime * result + ((caseSensitive == null) ? 0 : caseSensitive.hashCode());
		result = prime * result + ((id == null) ? 0 : id.hashCode());
		return result;
	}
	
	@Override
	public boolean equals(Object obj)
	{
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		I18nAliasImpl other = (I18nAliasImpl) obj;
		if (aliases == null)
		{
			if (other.aliases != null)
				return false;
		}
		else if (!aliases.equals(other.aliases))
			return false;
		if (caseSensitive == null)
		{
			if (other.caseSensitive != null)
				return false;
		}
		else if (!caseSensitive.equals(other.caseSensitive))
			return false;
		if (id == null)
		{
			if (other.id != null)
				return false;
		}
		else if (!id.equals(other.id))
			return false;
		return true;
	}
	
	// =========================================================================
	
	@Override
	public String toString()
	{
		return "I18nAliasImpl [name=" + id + ", caseSensitive=" + caseSensitive + ", aliases=" + aliases + "]";
	}
	
	// =========================================================================
	
	@Override
	public int compareTo(I18nAlias o)
	{
		return this.id.compareTo(o.getId());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy