blob: 0daa817c93cf2869bb6cf0bb344f29c6b0e41895 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.plugin.views.property;
import java.util.logging.Level;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.ui.plugin.OseePluginUiActivator;
import org.eclipse.ui.views.properties.TextPropertyDescriptor;
public class IntegerPropertyDescriptor extends TextPropertyDescriptor {
public IntegerPropertyDescriptor(PropertyId propertyId) {
super(propertyId, propertyId.getDisplayName());
setCategory(propertyId.getCategoryName());
}
public static String fromModel(int i) {
return String.valueOf(i);
}
public static int toModel(Object string) {
try {
return Integer.parseInt((String) string);
} catch (NumberFormatException ex) {
OseeLog.log(OseePluginUiActivator.class, Level.SEVERE, ex);
}
return 0;
}
}