/******************************************************************************* * Copyright 2005-2006, CHISEL Group, University of Victoria, Victoria, BC, Canada * and IBM Corporation. All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * The Chisel Group, University of Victoria * IBM Research, Cambridge, MA *******************************************************************************/ package net.sourceforge.tagsea.core.ui.waypoints; import org.eclipse.core.commands.AbstractParameterValueConverter; import org.eclipse.core.commands.ParameterValueConversionException; public class WaypointConverter extends AbstractParameterValueConverter { @Override public Object convertToObject(String parameterValue) throws ParameterValueConversionException { return null; } @Override public String convertToString(Object parameterValue) throws ParameterValueConversionException { return null; } }