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

javolution.util.internal.set.UnmodifiableSetImpl Maven / Gradle / Ivy

The newest version!
/*
 * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
 * Copyright (C) 2012 - Javolution (http://javolution.org/)
 * All rights reserved.
 * 
 * Permission to use, copy, modify, and distribute this software is
 * freely granted, provided that this notice is preserved.
 */
package javolution.util.internal.set;

import javolution.util.internal.collection.UnmodifiableCollectionImpl;
import javolution.util.service.SetService;

/**
 * An unmodifiable view over a set.
 */
public class UnmodifiableSetImpl extends UnmodifiableCollectionImpl
        implements SetService {

    private static final long serialVersionUID = 0x600L; // Version.

    public UnmodifiableSetImpl(SetService target) {
        super(target);
    }

    @Override
    public SetService threadSafe() {
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy