1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18 package org.apache.bcel.classfile;
19
20 import java.io.DataInputStream;
21 import java.io.DataOutputStream;
22 import java.io.IOException;
23 import org.apache.bcel.Constants;
24
25 /**
26 * represents an annotation that is represented in the class file but is not
27 * provided to the JVM.
28 *
29 * @version $Id: RuntimeInvisibleAnnotations
30 * @author <A HREF="mailto:dbrosius@qis.net">D. Brosius</A>
31 * @since 5.3
32 */
33 public class RuntimeInvisibleAnnotations extends Annotations
34 {
35 private static final long serialVersionUID = 5274986004117955967L;
36
37 /**
38 * @param name_index
39 * Index pointing to the name <em>Code</em>
40 * @param length
41 * Content length in bytes
42 * @param file
43 * Input stream
44 * @param constant_pool
45 * Array of constants
46 */
47 RuntimeInvisibleAnnotations(int name_index, int length,
48 DataInputStream file, ConstantPool constant_pool)
49 throws IOException
50 {
51 super(Constants.ATTR_RUNTIMEIN_VISIBLE_ANNOTATIONS, name_index, length,
52 file, constant_pool, false);
53 }
54
55 /**
56 * @return deep copy of this attribute
57 */
58 @Override
59 public Attribute copy(ConstantPool constant_pool)
60 {
61 Annotations c = (Annotations) clone();
62 return c;
63 }
64
65 @Override
66 public final void dump(DataOutputStream dos) throws IOException
67 {
68 super.dump(dos);
69 writeAnnotations(dos);
70 }
71 }