< prev index next >
src/java.desktop/share/classes/javax/swing/text/TableView.java
Print this page
@@ -544,11 +544,11 @@
*
* @param pos the search position >= 0
* @param a the allocation to the table on entry, and the
* allocation of the view containing the position on exit
* @return the view representing the given position, or
- * <code>null</code> if there isn't one
+ * {@code null} if there isn't one
*/
protected View getViewAtPosition(int pos, Rectangle a) {
int n = getViewCount();
for (int i = 0; i < n; i++) {
View v = getView(i);
@@ -757,11 +757,11 @@
*
* @param pos the search position >= 0
* @param a the allocation to the table on entry, and the
* allocation of the view containing the position on exit
* @return the view representing the given position, or
- * <code>null</code> if there isn't one
+ * {@code null} if there isn't one
*/
protected View getViewAtPosition(int pos, Rectangle a) {
int n = getViewCount();
for (int i = 0; i < n; i++) {
View v = getView(i);
< prev index next >