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

com.google.gwt.emul.java.lang.reflect.ByteField Maven / Gradle / Ivy

The newest version!

package java.lang.reflect;

import com.google.gwt.core.client.JavaScriptObject;

import java.lang.annotation.Annotation;
import java.util.function.Supplier;

/** 
 * A field representing a Byte object.
 * 
 * @author "[email protected]"
 *
 */
public class ByteField extends Field{

  public ByteField(Class declaringClass, String name, int modifiers, 
      JavaScriptObject accessor, Supplier annos) {
    super(Byte.class, declaringClass, name, modifiers, accessor, annos);
  }
  
//    public void setByte(Object obj, byte b)
//  throws IllegalArgumentException, IllegalAccessException {
//      set(obj, new Byte(b));
//    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy