< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantModule.java

Print this page

        

*** 88,115 **** * * @param file Output file stream * @throws IOException */ @Override ! public final void dump( final DataOutputStream file ) throws IOException { file.writeByte(super.getTag()); file.writeShort(name_index); } /** * @return Name index in constant pool of module name. */ ! public final int getNameIndex() { return name_index; } /** * @param name_index the name index in the constant pool of this Constant Module */ ! public final void setNameIndex( final int name_index ) { this.name_index = name_index; } /** @return String object --- 88,115 ---- * * @param file Output file stream * @throws IOException */ @Override ! public void dump( final DataOutputStream file ) throws IOException { file.writeByte(super.getTag()); file.writeShort(name_index); } /** * @return Name index in constant pool of module name. */ ! public int getNameIndex() { return name_index; } /** * @param name_index the name index in the constant pool of this Constant Module */ ! public void setNameIndex( final int name_index ) { this.name_index = name_index; } /** @return String object
*** 130,138 **** /** * @return String representation. */ @Override ! public final String toString() { return super.toString() + "(name_index = " + name_index + ")"; } } --- 130,138 ---- /** * @return String representation. */ @Override ! public String toString() { return super.toString() + "(name_index = " + name_index + ")"; } }
< prev index next >