blob: b06fd2a18c853786f123f4b84ceb0e4e158edd67 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2010 Oracle
* 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/
*
* Contributors:
* Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/
package org.eclipse.wst.common.project.facet.core.events.internal;
import org.eclipse.wst.common.project.facet.core.events.IFacetedProjectFrameworkEvent;
/**
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
*/
public class FacetedProjectFrameworkEvent
implements IFacetedProjectFrameworkEvent
{
private final Type eventType;
public FacetedProjectFrameworkEvent( final Type eventType )
{
this.eventType = eventType;
}
public final Type getType()
{
return this.eventType;
}
public String toString()
{
final StringBuilder buf = new StringBuilder();
buf.append( "<event type=\"" ); //$NON-NLS-1$
buf.append( this.eventType.name() );
buf.append( "\">\n" ); //$NON-NLS-1$
toStringInternal( buf );
buf.append( "</event>" ); //$NON-NLS-1$
return buf.toString();
}
protected void toStringInternal( final StringBuilder buf )
{
}
}