/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.isis.core.metamodel.facets.value.shortint; import java.text.DecimalFormat; import java.text.NumberFormat; import java.text.ParseException; import org.apache.isis.core.metamodel.adapter.ObjectAdapter; import org.apache.isis.core.metamodel.facetapi.Facet; import org.apache.isis.core.metamodel.facetapi.FacetHolder; import org.apache.isis.core.metamodel.facets.object.parseable.TextEntryParseException; import org.apache.isis.core.metamodel.facets.object.value.vsp.ValueSemanticsProviderAndFacetAbstract; import org.apache.isis.core.metamodel.services.ServicesInjector; public class ShortValueSemanticsProviderAbstract extends ValueSemanticsProviderAndFacetAbstract<Short> implements ShortValueFacet { public static Class<? extends Facet> type() { return ShortValueFacet.class; } private static final Short DEFAULT_VALUE = Short.valueOf((short) 0); private static final int MAX_LENGTH = 6; // allowing for -ve sign private static final int TYPICAL_LENGTH = MAX_LENGTH; private final NumberFormat format; public ShortValueSemanticsProviderAbstract(final FacetHolder holder, final Class<Short> adaptedClass, final ServicesInjector context) { super(type(), holder, adaptedClass, TYPICAL_LENGTH, MAX_LENGTH, Immutability.IMMUTABLE, EqualByContent.HONOURED, DEFAULT_VALUE, context); format = determineNumberFormat("value.format.short"); } // ////////////////////////////////////////////////////////////////// // Parser // ////////////////////////////////////////////////////////////////// @Override protected Short doParse(final Object context, final String entry) { try { return Short.valueOf(format.parse(entry).shortValue()); } catch (final ParseException e) { throw new TextEntryParseException("Not a whole number " + entry, e); } } @Override public String titleString(final Object value) { return titleString(format, value); } @Override public String titleStringWithMask(final Object value, final String usingMask) { return titleString(new DecimalFormat(usingMask), value); } // ////////////////////////////////////////////////////////////////// // EncoderDecoder // ////////////////////////////////////////////////////////////////// @Override protected String doEncode(final Object object) { return object.toString(); } @Override protected Short doRestore(final String data) { return new Short(data); } // ////////////////////////////////////////////////////////////////// // ShortValueFacet // ////////////////////////////////////////////////////////////////// @Override public ObjectAdapter createValue(final Short value) { return getAdapterManager().adapterFor(value); } @Override public Short shortValue(final ObjectAdapter object) { return (Short) (object == null ? null : object.getObject()); } // /////// toString /////// @Override public String toString() { return "ShortValueSemanticsProvider: " + format; } }