org.vesalainen.code.AbstractPropertySetter Maven / Gradle / Ivy
/*
* Copyright (C) 2014 Timo Vesalainen
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.vesalainen.code;
import org.vesalainen.util.Transactional;
/**
* A class that implements every set method by calling setProperty which throws
* exception for every not handled property
* @author Timo Vesalainen
*/
public class AbstractPropertySetter implements PropertySetter, Transactional
{
protected void setProperty(String property, Object arg)
{
throw new UnsupportedOperationException("Not supported for boolean property '"+property+"'");
}
@Override
public void set(String property, boolean arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, byte arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, char arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, short arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, int arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, long arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, float arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, double arg)
{
setProperty(property, arg);
}
@Override
public void set(String property, Object arg)
{
setProperty(property, arg);
}
@Override
public void start(String reason)
{
}
@Override
public void rollback(String reason)
{
}
@Override
public void commit(String reason)
{
}
@Override
public String[] getPrefixes()
{
throw new UnsupportedOperationException("Not supported yet.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy