com.ait.tooling.json.JSONContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ahome-tooling-json Show documentation
Show all versions of ahome-tooling-json Show documentation
Ahome Tooling JSON - Java JSON Parser and Serializer, heavily mooded from JSON Simple.
/*
* Copyright (c) 2014,2015 Ahome' Innovation Technologies. All rights reserved.
*
* Licensed 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 com.ait.tooling.json;
public class JSONContext implements IJSONContext
{
private static final long serialVersionUID = -7792131315336611481L;
private IJSONObjectReplacer m_obreplacer;
private IJSONArrayReplacer m_arreplacer;
private JSONDateFormatter m_dformatter;
private JSONNumberFormatter m_nformatter;
public JSONContext()
{
}
public JSONContext(final JSONContext context)
{
setObjectReplacer(context.getObjectReplacer());
setArrayReplacer(context.getArrayReplacer());
setDateFormatter(context.getDateFormatter());
setNumberFormatter(context.getNumberFormatter());
}
public JSONContext setObjectReplacer(final IJSONObjectReplacer replacer)
{
m_obreplacer = replacer;
return this;
}
@Override
public IJSONObjectReplacer getObjectReplacer()
{
return m_obreplacer;
}
public JSONContext setArrayReplacer(final IJSONArrayReplacer replacer)
{
m_arreplacer = replacer;
return this;
}
@Override
public IJSONArrayReplacer getArrayReplacer()
{
return m_arreplacer;
}
@Override
public JSONDateFormatter getDateFormatter()
{
return m_dformatter;
}
public JSONContext setDateFormatter(final JSONDateFormatter formatter)
{
m_dformatter = formatter;
return this;
}
@Override
public JSONNumberFormatter getNumberFormatter()
{
return m_nformatter;
}
public JSONContext setNumberFormatter(final JSONNumberFormatter formatter)
{
m_nformatter = formatter;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy