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

Glacier2._StringSetTie Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.7
//
// 
//
// Generated from file `Session.ice'
//
// Warning: do not edit this file.
//
// 
//

package Glacier2;

public class _StringSetTie extends _StringSetDisp implements Ice.TieBase
{
    public _StringSetTie()
    {
    }

    public _StringSetTie(_StringSetOperations delegate)
    {
        _ice_delegate = delegate;
    }

    public java.lang.Object ice_delegate()
    {
        return _ice_delegate;
    }

    public void ice_delegate(java.lang.Object delegate)
    {
        _ice_delegate = (_StringSetOperations)delegate;
    }

    public boolean equals(java.lang.Object rhs)
    {
        if(this == rhs)
        {
            return true;
        }
        if(!(rhs instanceof _StringSetTie))
        {
            return false;
        }

        return _ice_delegate.equals(((_StringSetTie)rhs)._ice_delegate);
    }

    public int hashCode()
    {
        return _ice_delegate.hashCode();
    }

    public void add(String[] additions, Ice.Current current)
    {
        _ice_delegate.add(additions, current);
    }

    public void remove(String[] deletions, Ice.Current current)
    {
        _ice_delegate.remove(deletions, current);
    }

    public String[] get(Ice.Current current)
    {
        return _ice_delegate.get(current);
    }

    private _StringSetOperations _ice_delegate;

    public static final long serialVersionUID = 3142250071276236879L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy