blob: 1d6e40f381524191fd25a49d4aa1e6fd2125d236 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 David Green 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 org.eclipse.mylyn.wikitext.parser.DocumentBuilder;
import com.google.common.base.Objects;
/**
* @since 3.0
*/
public class HorizontalRuleEvent extends DocumentBuilderEvent {
@Override
public void invoke(DocumentBuilder builder) {
builder.horizontalRule();
}
@Override
public int hashCode() {
return Objects.hashCode(HorizontalRuleEvent.class);
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (obj == this) {
return true;
}
if (!(obj instanceof HorizontalRuleEvent)) {
return false;
}
return true;
}
@Override
public String toString() {
return "horizontalRule()"; //$NON-NLS-1$
}
}