All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enonic.xp.data.PropertySetValue Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.data;

final class PropertySetValue
    extends Value
{
    PropertySetValue( final PropertySet value )
    {
        super( ValueTypes.PROPERTY_SET, value );
    }

    PropertySetValue( final PropertySetValue source, final PropertyTree tree )
    {
        super( ValueTypes.PROPERTY_SET, !source.isNull() ? source.asData().copy( tree ) : null );
    }

    @Override
    public Value copy( final PropertyTree tree )
    {
        return new PropertySetValue( this, tree );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy