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

io.baltoro.remote.CList Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package io.baltoro.remote;

import java.util.ArrayList;

public class CList extends ArrayList
{
    private static final long serialVersionUID = 1L;

    public E get(int index)
    {
        if (index == -1)
        {
            index = size()-1;
        }

        else if (index == size())
        {
            index = 0;
        }

        return super.get(index);
    }
    
    @Override
    public boolean add(E e)
    {
    	// TODO Auto-generated method stub
    	return super.add(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy