src/jdk.rmic/share/classes/sun/tools/java/BinaryAttribute.java
changeset 57814 699b8ef42f30
parent 47216 71c04702a3d5
equal deleted inserted replaced
57813:80fad5f39a42 57814:699b8ef42f30
     1 /*
     1 /*
     2  * Copyright (c) 1994, 2003, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1994, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   103      * Accessors
   103      * Accessors
   104      */
   104      */
   105 
   105 
   106     public Identifier getName() { return name; }
   106     public Identifier getName() { return name; }
   107 
   107 
   108     public byte getData()[] { return data; }
   108     public byte[] getData() { return data; }
   109 
   109 
   110     public BinaryAttribute getNextAttribute() { return next; }
   110     public BinaryAttribute getNextAttribute() { return next; }
   111 
   111 
   112 }
   112 }