aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/lll/mapper/tools/data/FieldData.java
blob: bcc39856adf1c105836025cd7fe10c388f9d2532 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

package ftbsc.lll.mapper.tools.data;

/**
 * Container class for method data.
 */
public class FieldData {
   /**
    * The internal name of the parent class.
    */
   public final ClassData parentClass;

   /**
    * The name of the method.
    */
   public final String name;

   /**
    * The name mapped.
    */
   public final String nameMapped;

   /**
    * Constructs a new {@link FieldData}.
    * @param parentClass the {@link ClassData} representation of the parent class
    * @param name the field name
    * @param nameMapped the mapped field name
    */
   public FieldData(ClassData parentClass, String name, String nameMapped) {
      this.parentClass = parentClass;
      this.name = name;
      this.nameMapped = nameMapped;
   }
}