com.phloc.css.decl.shorthand.CSSPropertyWithDefaultValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phloc-css-jdk5 Show documentation
Show all versions of phloc-css-jdk5 Show documentation
phloc CSS parser an other components
/**
* Copyright (C) 2006-2014 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* 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.phloc.css.decl.shorthand;
import javax.annotation.Nonnull;
import com.phloc.commons.ValueEnforcer;
import com.phloc.commons.string.ToStringGenerator;
import com.phloc.css.property.ICSSProperty;
/**
* A descriptor for a property and a default value
*
* @author Philip Helger
* @since 3.7.4
*/
public final class CSSPropertyWithDefaultValue
{
private final ICSSProperty m_aProperty;
private final String m_sDefaultValue;
public CSSPropertyWithDefaultValue (@Nonnull final ICSSProperty aProperty, @Nonnull final String sDefaultValue)
{
m_aProperty = ValueEnforcer.notNull (aProperty, "Property");
m_sDefaultValue = ValueEnforcer.notNull (sDefaultValue, "DefaultValue");
// Check that default value is valid for property
if (!aProperty.isValidValue (sDefaultValue))
throw new IllegalArgumentException ("Default value '" + sDefaultValue + "' does not match property " + aProperty);
}
@Nonnull
public ICSSProperty getProperty ()
{
return m_aProperty;
}
@Nonnull
public String getDefaultValue ()
{
return m_sDefaultValue;
}
@Override
public String toString ()
{
return new ToStringGenerator (this).append ("property", m_aProperty)
.append ("defaultValue", m_sDefaultValue)
.toString ();
}
}