blob: 404ab9cfe21036031c4737c8cc679f1ea10b0453 [file] [log] [blame]
/*
* Copyright (C) 2005 db4objects Inc. http://www.db4o.com
*
* 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:
* db4objects - Initial API and implementation
*/
package org.eclipse.jface.internal.databinding.provisional.conversion;
/**
* ConvertString2IntegerPrimitive.
*/
public class ConvertString2IntegerPrimitive implements IConverter {
/* (non-Javadoc)
* @see org.eclipse.jface.binding.converter.IConverter#convert(java.lang.Object)
*/
public Object convert(Object source) {
try {
return new Integer(Integer.parseInt((String) source));
} catch (Exception e) {
throw new IllegalArgumentException("String2Int: " + e.getMessage() + ": " + source); //$NON-NLS-1$ //$NON-NLS-2$
}
}
public Object getFromType() {
return String.class;
}
public Object getToType() {
return Integer.TYPE;
}
}