< prev index next >

src/java.base/share/classes/java/text/RBTableBuilder.java

Print this page
rev 56290 : 8230648: Replace @exception tag with @throws in java.base
Summary: Minor coding style update of javadoc tag in any file in java.base
Reviewed-by: prappo, lancea

*** 1,7 **** /* ! * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 70,80 **** * Create a table-based collation object with the given rules. * This is the main function that actually builds the tables and * stores them back in the RBCollationTables object. It is called * ONLY by the RBCollationTables constructor. * @see RuleBasedCollator#RuleBasedCollator ! * @exception ParseException If the rules format is incorrect. */ public void build(String pattern, int decmp) throws ParseException { String expChars; String groupChars; --- 70,80 ---- * Create a table-based collation object with the given rules. * This is the main function that actually builds the tables and * stores them back in the RBCollationTables object. It is called * ONLY by the RBCollationTables constructor. * @see RuleBasedCollator#RuleBasedCollator ! * @throws ParseException If the rules format is incorrect. */ public void build(String pattern, int decmp) throws ParseException { String expChars; String groupChars;
< prev index next >