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

net.sf.javagimmicks.collections.mapping.DefaultMapping Maven / Gradle / Ivy

package net.sf.javagimmicks.collections.mapping;

public class DefaultMapping extends AbstractMapping
{
   private static final long serialVersionUID = 2942113751287943014L;

   private final L _left;
   private final R _right;
   
   public DefaultMapping(L left, R right)
   {
      _left = left;
      _right = right;
   }

   @Override
   public L getLeft()
   {
      return _left;
   }

   @Override
   public R getRight()
   {
      return _right;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy