blob: 790f3a43cbb7f1f527e3fd810b727000f0884fa9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David Green - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.wikitext.parser.builder.event;
import static com.google.common.base.Preconditions.checkNotNull;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder;
import com.google.common.base.Objects;
/**
* An {@link DocumentBuilderEvent} corresponding to {@link DocumentBuilder#charactersUnescaped(String)}.
*
* @author david.green
* @since 3.0
*/
public class CharactersUnescapedEvent extends DocumentBuilderEvent {
private final String literal;
public CharactersUnescapedEvent(String literal) {
this.literal = checkNotNull(literal, "Must provide literal"); //$NON-NLS-1$
}
@Override
public void invoke(DocumentBuilder builder) {
builder.charactersUnescaped(literal);
}
@Override
public int hashCode() {
return Objects.hashCode(literal);
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (obj == this) {
return true;
}
if (!(obj instanceof CharactersUnescapedEvent)) {
return false;
}
CharactersUnescapedEvent other = (CharactersUnescapedEvent) obj;
return Objects.equal(other.literal, literal);
}
@Override
public String toString() {
return String.format("charactersUnescaped(\"%s\")", literal); //$NON-NLS-1$
}
}