1    
2    /*
3    
4      The author of this software is Ian Kaplan
5      Bear Products International
6      www.bearcave.com
7      iank@bearcave.com
8    
9      Copyright (c) Ian Kaplan, 1999, 2000
10   
11     See copyright file for usage and licensing
12   
13   */
14   
15   package attr;
16   
17   import java.io.*;
18   import util.*;
19   import jconst.*;
20   
21   /**
22   
23      Represent a JVM class file synthetic attribute.
24   <p>
25      A class member that does not appear in the source code must be
26      marked using a Synthetic attribute.
27   <p>
28      The length of the synthetic attribute is zero, so this class does
29      nothing, since the attrFactory allocAttr method reads the
30      attribute_name_index and the attribute_length (which, again,
31      is zero).
32   
33      @author Ian Kaplan
34    */
35   public class synthAttr extends attrInfo {
36   
37     public synthAttr(String name, int length) {
38       super( name, length );
39       // that's all folks
40     }  // synthAttr constructor
41   
42   } // synthAttr
43