Skip to content
Snippets Groups Projects
ArrayCellLens.java 304 B
Newer Older
  • Learn to ignore specific revisions
  • Guyslain's avatar
    Guyslain committed
    package fr.univamu.progav.td6;
    
    public class ArrayCellLens<T> implements Lens<T> {
    
      // TODO ajouter les propriétés
    
      public ArrayCellLens(T[] array, int index) {
        // TODO
      }
    
      @Override
      public T get() {
        // TODO
        return null;
      }
    
      @Override
      public void set(T t) {
        // TODO
      }
    }