package com.xrosstools.xunit.editor.model;
import org.eclipse.ui.views.properties.IPropertyDescriptor;
import com.xrosstools.xunit.BehaviorType;
import com.xrosstools.xunit.editor.Activator;
public class EndPointNode extends IconNode{
public EndPointNode(){
super(BehaviorType.processor, Activator.END_POINT, false);
}
/**
* No need for properties for panel
*/
public IPropertyDescriptor[] getPropertyDescriptors() {
return new IPropertyDescriptor[0];
}
}