Esempio n. 1
0
 /**
  * Constructs a new {@link FieldWriter}.
  *
  * @param cw the class writer to which this field must be added.
  * @param access the field's access flags (see {@link Opcodes}).
  * @param name the field's name.
  * @param desc the field's descriptor (see {@link Type}).
  * @param signature the field's signature. May be <tt>null</tt>.
  * @param value the field's constant value. May be <tt>null</tt>.
  */
 FieldWriter(
     final ClassWriter cw,
     final int access,
     final String name,
     final String desc,
     final String signature,
     final Object value) {
   super(Opcodes.ASM4);
   if (cw.firstField == null) {
     cw.firstField = this;
   } else {
     cw.lastField.fv = this;
   }
   cw.lastField = this;
   this.cw = cw;
   this.access = access;
   this.name = cw.newUTF8(name);
   this.desc = cw.newUTF8(desc);
   if (ClassReader.SIGNATURES && signature != null) {
     this.signature = cw.newUTF8(signature);
   }
   if (value != null) {
     this.value = cw.newConstItem(value).index;
   }
 }
Esempio n. 2
0
 /**
  * Constructs a new {@link FieldWriter}.
  *
  * @param cw the class writer to which this field must be added.
  * @param access the field's access flags (see {@link Opcodes}).
  * @param name the field's name.
  * @param desc the field's descriptor (see {@link Type}).
  * @param signature the field's signature. May be <tt>null</tt>.
  * @param value the field's constant value. May be <tt>null</tt>.
  */
 protected FieldWriter(
     final ClassWriter cw,
     final int access,
     final String name,
     final String desc,
     final String signature,
     final Object value) {
   if (cw.firstField == null) {
     cw.firstField = this;
   } else {
     cw.lastField.next = this;
   }
   cw.lastField = this;
   this.cw = cw;
   this.access = access;
   this.name = cw.newUTF8(name);
   this.desc = cw.newUTF8(desc);
   if (signature != null) {
     this.signature = cw.newUTF8(signature);
   }
   if (value != null) {
     this.value = cw.newConstItem(value).index;
   }
 }
Esempio n. 3
0
 public void visit(final String name, final Object value) {
   ++size;
   if (named) {
     bv.putShort(cw.newUTF8(name));
   }
   if (value instanceof String) {
     bv.put12('s', cw.newUTF8((String) value));
   } else if (value instanceof Byte) {
     bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index);
   } else if (value instanceof Boolean) {
     int v = ((Boolean) value).booleanValue() ? 1 : 0;
     bv.put12('Z', cw.newInteger(v).index);
   } else if (value instanceof Character) {
     bv.put12('C', cw.newInteger(((Character) value).charValue()).index);
   } else if (value instanceof Short) {
     bv.put12('S', cw.newInteger(((Short) value).shortValue()).index);
   } else if (value instanceof Type) {
     bv.put12('c', cw.newUTF8(((Type) value).getDescriptor()));
   } else if (value instanceof byte[]) {
     byte[] v = (byte[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('B', cw.newInteger(v[i]).index);
     }
   } else if (value instanceof boolean[]) {
     boolean[] v = (boolean[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('Z', cw.newInteger(v[i] ? 1 : 0).index);
     }
   } else if (value instanceof short[]) {
     short[] v = (short[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('S', cw.newInteger(v[i]).index);
     }
   } else if (value instanceof char[]) {
     char[] v = (char[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('C', cw.newInteger(v[i]).index);
     }
   } else if (value instanceof int[]) {
     int[] v = (int[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('I', cw.newInteger(v[i]).index);
     }
   } else if (value instanceof long[]) {
     long[] v = (long[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('J', cw.newLong(v[i]).index);
     }
   } else if (value instanceof float[]) {
     float[] v = (float[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('F', cw.newFloat(v[i]).index);
     }
   } else if (value instanceof double[]) {
     double[] v = (double[]) value;
     bv.put12('[', v.length);
     for (int i = 0; i < v.length; i++) {
       bv.put12('D', cw.newDouble(v[i]).index);
     }
   } else {
     Item i = cw.newConstItem(value);
     bv.put12(".s.IFJDCS".charAt(i.type), i.index);
   }
 }