Home | History | Annotate | Download | only in number
      1 //  2017 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html#License
      3 package com.ibm.icu.impl.number;
      4 
      5 /**
      6  * @author sffc
      7  *
      8  */
      9 public interface MicroPropsMutator<T> {
     10 
     11     public void mutateMicros(MicroProps micros, T value);
     12 
     13 }
     14