blob: 8ec64fa507d64edb6677b5c6b5ff27fb6be0e921 [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 org.eclipse.mylyn.wikitext.parser.DocumentBuilder;
import com.google.common.base.Objects;
/**
* An {@link DocumentBuilderEvent} corresponding to {@link DocumentBuilder#beginDocument()}.
*
* @author david.green
* @since 3.0
*/
public class BeginDocumentEvent extends DocumentBuilderEvent {
@Override
public void invoke(DocumentBuilder builder) {
builder.beginDocument();
}
@Override
public int hashCode() {
return Objects.hashCode(BeginDocumentEvent.class);
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (obj == this) {
return true;
}
if (!(obj instanceof BeginDocumentEvent)) {
return false;
}
return true;
}
@Override
public String toString() {
return "beginDocument()"; //$NON-NLS-1$
}
}