io.baltoro.remote.CList Maven / Gradle / Ivy
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