blob: 29113a784f800f003a4ae83b1798a1d014b9e385 [file] [log] [blame]
/**
* Copyright (c) 2002-2006 IBM Corporation and others.
* 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
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.xsd.impl.type;
import org.eclipse.emf.ecore.xml.type.internal.XMLDuration;
public class XSDDurationType extends XSDAnySimpleType
{
@Override
public Object getValue(String normalizedLiteral)
{
try
{
return new XMLDuration(normalizedLiteral);
}
catch (RuntimeException exception)
{
return null;
}
}
@Override
public int compareValues(Object value1, Object value2)
{
return XMLDuration.compare((XMLDuration)value1, (XMLDuration)value2);
}
}