# HG changeset patch # User tvaleev # Date 1539134757 25200 # Node ID de9486d74a74a440eee22336665e51fe763aefcd # Parent b43c2aa001a5f1b4b1a0a73bbf06b75d49718e77 8211693: Convert C-style array declarations in client demos and jdk.accessibility Reviewed-by: serb diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/java2d/J2DBench/src/j2dbench/Destinations.java --- a/src/demo/share/java2d/J2DBench/src/j2dbench/Destinations.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/java2d/J2DBench/src/j2dbench/Destinations.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -160,28 +160,28 @@ public static class CompatImg extends Destinations { int transparency; - public static String ShortNames[] = { + public static String[] ShortNames = { "compatimg", "opqcompatimg", "bmcompatimg", "transcompatimg", }; - public static String ShortDescriptions[] = { + public static String[] ShortDescriptions = { "Default", "Opaque", "Bitmask", "Translucent", }; - public static String LongDescriptions[] = { + public static String[] LongDescriptions = { "Default Compatible Image", "Opaque Compatible Image", "Bitmask Compatible Image", "Translucent Compatible Image", }; - public static String ModifierNames[] = { + public static String[] ModifierNames = { "CompatImage()", "CompatImage(Opaque)", "CompatImage(Bitmask)", @@ -282,7 +282,7 @@ int type; Image img; - public static String ShortNames[] = { + public static String[] ShortNames = { "custom", "IntXrgb", "IntArgb", @@ -299,7 +299,7 @@ "ByteIndexed", }; - public static String Descriptions[] = { + public static String[] Descriptions = { "Custom Image", "32-bit XRGB Packed Image", "32-bit ARGB Packed Image", diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/java2d/J2DBench/src/j2dbench/J2DBench.java --- a/src/demo/share/java2d/J2DBench/src/j2dbench/J2DBench.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/java2d/J2DBench/src/j2dbench/J2DBench.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -187,7 +187,7 @@ System.exit(exitcode); } - public static void main(String argv[]) { + public static void main(String[] argv) { init(); TestEnvironment.init(); Result.init(); @@ -310,8 +310,8 @@ if (argv[i].indexOf(":") >= 0) { - String values[] = argv[i].split(":"); - int intVals[] = new int[3]; + String[] values = argv[i].split(":"); + int[] intVals = new int[3]; for(int j=0; j 0; j--) { if (strs[j].compareTo(strs[j-1]) >= 0) { @@ -307,7 +307,7 @@ } } - public static void sort2(String strs[]) { + public static void sort2(String[] strs) { for (int i = 1; i < strs.length; i++) { for (int j = i; j > 0; j--) { if (compare(strs[j-1], strs[j])) { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/java2d/J2DBench/src/j2dbench/report/J2DAnalyzer.java --- a/src/demo/share/java2d/J2DBench/src/j2dbench/report/J2DAnalyzer.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/java2d/J2DBench/src/j2dbench/report/J2DAnalyzer.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -91,12 +91,12 @@ "are best of all result sets in that group"); } - public static void main(String argv[]) { + public static void main(String[] argv) { boolean gavehelp = false; boolean graph = false; boolean ignoreuncontested = true; if (argv.length > 0 && argv[0].equalsIgnoreCase("-html")) { - String newargs[] = new String[argv.length-1]; + String[] newargs = new String[argv.length-1]; System.arraycopy(argv, 1, newargs, 0, newargs.length); HTMLSeriesReporter.main(newargs); return; @@ -144,15 +144,15 @@ } int numsets = results.size(); - double totalscore[] = new double[numsets]; - int numwins[] = new int[numsets]; - int numties[] = new int[numsets]; - int numloss[] = new int[numsets]; - int numtests[] = new int[numsets]; - double bestscore[] = new double[numsets]; - double worstscore[] = new double[numsets]; - double bestspread[] = new double[numsets]; - double worstspread[] = new double[numsets]; + double[] totalscore = new double[numsets]; + int[] numwins = new int[numsets]; + int[] numties = new int[numsets]; + int[] numloss = new int[numsets]; + int[] numtests = new int[numsets]; + double[] bestscore = new double[numsets]; + double[] worstscore = new double[numsets]; + double[] bestspread = new double[numsets]; + double[] worstspread = new double[numsets]; for (int i = 0; i < numsets; i++) { bestscore[i] = Double.NEGATIVE_INFINITY; worstscore[i] = Double.POSITIVE_INFINITY; @@ -166,7 +166,7 @@ while (enum_.hasMoreElements()) { keyvector.add(enum_.nextElement()); } - String keys[] = new String[keyvector.size()]; + String[] keys = new String[keyvector.size()]; keyvector.copyInto(keys); sort(keys); enum_ = ResultHolder.commonkeys.keys(); @@ -647,7 +647,7 @@ } private String makeKey(boolean prunecommon) { - String keys[] = new String[options.size()]; + String[] keys = new String[options.size()]; Enumeration enum_ = options.keys(); int i = 0; while (enum_.hasMoreElements()) { @@ -811,7 +811,7 @@ return ret; } - public static void sort(String strs[]) { + public static void sort(String[] strs) { for (int i = 1; i < strs.length; i++) { for (int j = i; j > 0; j--) { if (strs[j].compareTo(strs[j-1]) >= 0) { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/java2d/J2DBench/src/j2dbench/report/XMLHTMLReporter.java --- a/src/demo/share/java2d/J2DBench/src/j2dbench/report/XMLHTMLReporter.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/java2d/J2DBench/src/j2dbench/report/XMLHTMLReporter.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -102,7 +102,7 @@ */ private static void addGroup(String testName) { - String testNameSplit[] = testName.replace('.', '_').split("_"); + String[] testNameSplit = testName.replace('.', '_').split("_"); String group = testNameSplit[0]; for(int i=1; i"); testResultsScoreBuffer.append(testResultsStartBuffer); - String tableTags[] = null; + String[] tableTags = null; for(int i=0; i 0); @@ -347,7 +347,7 @@ public void runTest(Object context, int numReps) { WritableRaster ras = ((Context) context).ras; - int pixeldata[] = ((Context) context).pixeldata; + int[] pixeldata = ((Context) context).pixeldata; do { ras.setPixel(numReps&7, 0, pixeldata); } while (--numReps > 0); diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/java2d/J2DBench/src/j2dbench/tests/RenderTests.java --- a/src/demo/share/java2d/J2DBench/src/j2dbench/tests/RenderTests.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/java2d/J2DBench/src/j2dbench/tests/RenderTests.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -83,8 +83,8 @@ static final int NUM_RANDOMCOLORS = 4096; static final int NUM_RANDOMCOLORMASK = (NUM_RANDOMCOLORS - 1); - static Color randAlphaColors[]; - static Color randOpaqueColors[]; + static Color[] randAlphaColors; + static Color[] randOpaqueColors; static { randOpaqueColors = new Color[NUM_RANDOMCOLORS]; @@ -161,7 +161,7 @@ new Option.Toggle(renderoptroot, "antialias", "Render shapes antialiased", Option.Toggle.Off); - String strokeStrings[] = { + String[] strokeStrings = { "width0", "width1", "width5", @@ -171,7 +171,7 @@ "dash5_20", "dash20_50", }; - String strokeDescriptions[] = { + String[] strokeDescriptions = { "Solid Thin lines", "Solid Width 1 lines", "Solid Width 5 lines", @@ -181,7 +181,7 @@ "Dashed Width 5 lines", "Dashed Width 20 lines", }; - BasicStroke strokeObjects[] = { + BasicStroke[] strokeObjects = { new BasicStroke(0f), new BasicStroke(1f), new BasicStroke(5f), @@ -272,7 +272,7 @@ public static class Context extends GraphicsTests.Context { int colorindex; - Color colorlist[]; + Color[] colorlist; } public RenderTests(Group parent, String nodeName, String description) { @@ -410,7 +410,7 @@ int y = rctx.initY; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; if (rctx.animate) { do { @@ -455,7 +455,7 @@ int y = rctx.initY; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; if (rctx.animate) { do { @@ -500,7 +500,7 @@ int y = rctx.initY; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; if (rctx.animate) { do { @@ -536,7 +536,7 @@ int y = rctx.initY; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; if (rctx.animate) { do { @@ -583,7 +583,7 @@ int y = rctx.initY; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; if (rctx.animate) { do { @@ -626,7 +626,7 @@ int y = rctx.initY; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; if (rctx.animate) { do { @@ -680,7 +680,7 @@ int y = rctx.initY; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; if (rctx.animate) { do { @@ -733,11 +733,11 @@ int size = rctx.size; int x = rctx.initX; int y = rctx.initY; - int hexaX[] = new int[6]; - int hexaY[] = new int[6]; + int[] hexaX = new int[6]; + int[] hexaY = new int[6]; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; do { hexaX[0] = x; @@ -798,11 +798,11 @@ int size = rctx.size - 1; int x = rctx.initX; int y = rctx.initY; - int hexaX[] = new int[6]; - int hexaY[] = new int[6]; + int[] hexaX = new int[6]; + int[] hexaY = new int[6]; Graphics g = rctx.graphics; g.translate(rctx.orgX, rctx.orgY); - Color rCArray[] = rctx.colorlist; + Color[] rCArray = rctx.colorlist; int ci = rctx.colorindex; do { hexaX[0] = x; @@ -868,7 +868,7 @@ CubicCurve2D curve = cctx.curve; Graphics2D g2d = (Graphics2D) cctx.graphics; g2d.translate(cctx.orgX, cctx.orgY); - Color rCArray[] = cctx.colorlist; + Color[] rCArray = cctx.colorlist; int ci = cctx.colorindex; do { curve.setCurve(x, y+size/2.0, @@ -922,7 +922,7 @@ CubicCurve2D curve = cctx.curve; Graphics2D g2d = (Graphics2D) cctx.graphics; g2d.translate(cctx.orgX, cctx.orgY); - Color rCArray[] = cctx.colorlist; + Color[] rCArray = cctx.colorlist; int ci = cctx.colorindex; do { curve.setCurve(x, y+size/2.0, @@ -970,7 +970,7 @@ Ellipse2D ellipse = cctx.ellipse; Graphics2D g2d = (Graphics2D) cctx.graphics; g2d.translate(cctx.orgX, cctx.orgY); - Color rCArray[] = cctx.colorlist; + Color[] rCArray = cctx.colorlist; int ci = cctx.colorindex; do { if (rCArray != null) { @@ -1012,7 +1012,7 @@ Ellipse2D ellipse = cctx.ellipse; Graphics2D g2d = (Graphics2D) cctx.graphics; g2d.translate(cctx.orgX, cctx.orgY); - Color rCArray[] = cctx.colorlist; + Color[] rCArray = cctx.colorlist; int ci = cctx.colorindex; do { if (rCArray != null) { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/java2d/J2DBench/src/j2dbench/ui/EnableButton.java --- a/src/demo/share/java2d/J2DBench/src/j2dbench/ui/EnableButton.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/java2d/J2DBench/src/j2dbench/ui/EnableButton.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -57,7 +57,7 @@ private Group group; private int type; - public static final String icons[] = { + public static final String[] icons = { "Set", "Clear", "Invert", diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/FileChooserDemo/FileChooserDemo.java --- a/src/demo/share/jfc/FileChooserDemo/FileChooserDemo.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/FileChooserDemo/FileChooserDemo.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -791,7 +791,7 @@ } } - public static void main(String s[]) { + public static void main(String[] s) { try { SwingUtilities.invokeAndWait(new Runnable() { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/Font2DTest/Font2DTest.java --- a/src/demo/share/jfc/Font2DTest/Font2DTest.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/Font2DTest/Font2DTest.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -116,16 +116,16 @@ private JTextArea userTextArea; private JDialog printDialog; private JDialog fontInfoDialog; - private LabelV2 fontInfos[] = new LabelV2[2]; + private LabelV2[] fontInfos = new LabelV2[2]; private JFileChooser filePromptDialog = null; private ButtonGroup printCBGroup; - private JRadioButton printModeCBs[] = new JRadioButton[3]; + private JRadioButton[] printModeCBs = new JRadioButton[3]; /// Status bar private final LabelV2 statusBar; - private int fontStyles [] = {Font.PLAIN, Font.BOLD, Font.ITALIC, Font.BOLD | Font.ITALIC}; + private int[] fontStyles = {Font.PLAIN, Font.BOLD, Font.ITALIC, Font.BOLD | Font.ITALIC}; /// Text filename private String tFileName; @@ -289,7 +289,7 @@ parent.setJMenuBar( mb ); - String fontList[] = + String[] fontList = GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames(); for ( int i = 0; i < fontList.length; i++ ) @@ -422,7 +422,7 @@ /// RangeMenu object signals using this function /// when Unicode range has been changed and text needs to be redrawn public void fireRangeChanged() { - int range[] = rm.getSelectedRange(); + int[] range = rm.getSelectedRange(); fp.setTextToDraw( fp.RANGE_TEXT, range, null, null ); if(canDisplayCheck) { setupFontList(range[0], range[1]); @@ -445,7 +445,7 @@ /// Updates the information about the selected font public void fireUpdateFontInfo() { if ( showFontInfoCBMI.getState() ) { - String infos[] = fp.getFontInfo(); + String[] infos = fp.getFontInfo(); for ( int i = 0; i < fontInfos.length; i++ ) fontInfos[i].setText( infos[i] ); fontInfoDialog.pack(); @@ -533,7 +533,7 @@ private String[] parseUserText( String orig ) { int length = orig.length(); StringTokenizer perLine = new StringTokenizer( orig, "\n" ); - String textLines[] = new String[ perLine.countTokens() ]; + String[] textLines = new String[ perLine.countTokens() ]; int lineNumber = 0; while ( perLine.hasMoreElements() ) { @@ -583,14 +583,15 @@ /// Then breaks the text into String array, delimited at every line break private void readTextFile( String fileName ) { try { - String fileText, textLines[]; + String fileText; + String[] textLines; BufferedInputStream bis = new BufferedInputStream( new FileInputStream( fileName )); int numBytes = bis.available(); if (numBytes == 0) { throw new Exception("Text file " + fileName + " is empty"); } - byte byteData[] = new byte[ numBytes ]; + byte[] byteData = new byte[ numBytes ]; bis.read( byteData, 0, numBytes ); bis.close(); @@ -648,7 +649,7 @@ BufferedOutputStream bos = new BufferedOutputStream( new FileOutputStream( fileName )); /// Prepend title and the option that is only obtainable here - int range[] = rm.getSelectedRange(); + int[] range = rm.getSelectedRange(); String completeOptions = ( "Font2DTest Option File\n" + displayGridCBMI.getState() + "\n" + @@ -656,7 +657,7 @@ showFontInfoCBMI.getState() + "\n" + rm.getSelectedItem() + "\n" + range[0] + "\n" + range[1] + "\n" + curOptions + tFileName); - byte toBeWritten[] = completeOptions.getBytes( "UTF-16" ); + byte[] toBeWritten = completeOptions.getBytes( "UTF-16" ); bos.write( toBeWritten, 0, toBeWritten.length ); bos.close(); } @@ -714,7 +715,7 @@ BufferedInputStream bis = new BufferedInputStream( new FileInputStream( fileName )); int numBytes = bis.available(); - byte byteData[] = new byte[ numBytes ]; + byte[] byteData = new byte[ numBytes ]; bis.read( byteData, 0, numBytes ); bis.close(); if ( numBytes < 2 || @@ -744,7 +745,7 @@ int antialiasOpt = Integer.parseInt(perLine.nextToken()); int fractionalOpt = Integer.parseInt(perLine.nextToken()); int lcdContrast = Integer.parseInt(perLine.nextToken()); - String userTextOpt[] = { "Font2DTest!" }; + String[] userTextOpt = { "Font2DTest!" }; String dialogEntry = "Font2DTest!"; if (textToUseOpt == fp.USER_TEXT ) { int numLines = perLine.countTokens(), lineNumber = 0; @@ -1016,7 +1017,7 @@ } /// Main function - public static void main(String argv[]) { + public static void main(String[] argv) { if(argv.length > 0) { if(argv[0].equalsIgnoreCase("-disablecandisplaycheck") || diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/Font2DTest/FontPanel.java --- a/src/demo/share/jfc/Font2DTest/FontPanel.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/Font2DTest/FontPanel.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -95,14 +95,14 @@ public final class FontPanel extends JPanel implements AdjustmentListener { /// Drawing Option Constants - private final String STYLES[] = + private final String[] STYLES = { "plain", "bold", "italic", "bold italic" }; private final int NONE = 0; private final int SCALE = 1; private final int SHEAR = 2; private final int ROTATE = 3; - private final String TRANSFORMS[] = + private final String[] TRANSFORMS = { "with no transforms", "with scaling", "with Shearing", "with rotation" }; private final int DRAW_STRING = 0; @@ -112,7 +112,7 @@ private final int TL_DRAW = 4; private final int GV_OUTLINE = 5; private final int TL_OUTLINE = 6; - private final String METHODS[] = { + private final String[] METHODS = { "drawString", "drawChars", "drawBytes", "drawGlyphVector", "TextLayout.draw", "GlyphVector.getOutline", "TextLayout.getOutline" }; @@ -120,9 +120,9 @@ public final int ALL_GLYPHS = 1; public final int USER_TEXT = 2; public final int FILE_TEXT = 3; - private final String MS_OPENING[] = + private final String[] MS_OPENING = { " Unicode ", " Glyph Code ", " lines ", " lines " }; - private final String MS_CLOSING[] = + private final String[] MS_CLOSING = { "", "", " of User Text ", " of LineBreakMeasurer-reformatted Text " }; /// General Graphics Variable @@ -153,10 +153,10 @@ private Object lcdContrast = getDefaultLCDContrast(); private int drawMethod = DRAW_STRING; private int textToUse = RANGE_TEXT; - private String userText[] = null; - private String fileText[] = null; - private int drawRange[] = { 0x0000, 0x007f }; - private String fontInfos[] = new String[2]; + private String[] userText = null; + private String[] fileText = null; + private int[] drawRange = { 0x0000, 0x007f }; + private String[] fontInfos = new String[2]; private boolean showGrid = true; /// Parent Font2DTest panel @@ -271,8 +271,8 @@ fc.repaint(); } - public void setTextToDraw( int i, int range[], - String textSet[], String fileData[] ) { + public void setTextToDraw( int i, int[] range, + String[] textSet, String[] fileData ) { textToUse = i; if ( textToUse == RANGE_TEXT ) @@ -377,8 +377,8 @@ String name, float size, int style, int transform, int g2transform, int text, int method, int aa, int fm, - int contrast, String user[] ) { - int range[] = { start, end }; + int contrast, String[] user ) { + int[] range = { start, end }; /// Since repaint call has a low priority, these functions will finish /// before the actual repainting is done @@ -458,7 +458,7 @@ private String backupStatusString = null; /// Error constants - private final String ERRORS[] = { + private final String[] ERRORS = { "ERROR: drawBytes cannot handle characters beyond 0x00FF. Select different range or draw methods.", "ERROR: Cannot fit text with the current font size. Resize the window or use smaller font size.", "ERROR: Cannot print with the current font size. Use smaller font size.", @@ -480,7 +480,7 @@ /// Creates an invisble pointer by giving it bogus image /// Possibly find a workaround for this... Toolkit tk = Toolkit.getDefaultToolkit(); - byte bogus[] = { (byte) 0 }; + byte[] bogus = { (byte) 0 }; blankCursor = tk.createCustomCursor( tk.createImage( bogus ), new Point(0, 0), "" ); @@ -545,8 +545,8 @@ public void modeSpecificDrawChar( Graphics2D g2, int charCode, int baseX, int baseY ) { GlyphVector gv; - int oneGlyph[] = { charCode }; - char charArray[] = Character.toChars( charCode ); + int[] oneGlyph = { charCode }; + char[] charArray = Character.toChars( charCode ); FontRenderContext frc = g2.getFontRenderContext(); AffineTransform oldTX = g2.getTransform(); @@ -563,7 +563,7 @@ // we need to convert back to user space to be able to // calculate the shift as baseX is in user space. try { - double pt[] = new double[4]; + double[] pt = new double[4]; pt[0] = r2d2.getX(); pt[1] = r2d2.getY(); pt[2] = r2d2.getX()+r2d2.getWidth(); @@ -597,7 +597,7 @@ case DRAW_BYTES: if ( charCode > 0xff ) throw new CannotDrawException( DRAW_BYTES_ERROR ); - byte oneByte[] = { (byte) charCode }; + byte[] oneByte = { (byte) charCode }; g2.drawBytes( oneByte, 0, 1, 0, 0 ); break; case DRAW_GLYPHV: @@ -644,7 +644,7 @@ break; case DRAW_BYTES: try { - byte lineBytes[] = line.getBytes( "ISO-8859-1" ); + byte[] lineBytes = line.getBytes( "ISO-8859-1" ); g2.drawBytes( lineBytes, 0, lineBytes.length, 0, 0 ); } catch ( Exception e ) { @@ -934,7 +934,7 @@ oneLine.isLeftToRight() ? canvasInset_X : ( (float) w - oneLine.getAdvance() - canvasInset_X ); - float fmData[] = {0, oneLine.getAscent(), 0, oneLine.getDescent(), 0, oneLine.getLeading()}; + float[] fmData = {0, oneLine.getAscent(), 0, oneLine.getDescent(), 0, oneLine.getLeading()}; if (g2Transform != NONE) { AffineTransform at = getAffineTransform(g2Transform); at.transform( fmData, 0, fmData, 0, 3); diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/CloningFeature.java --- a/src/demo/share/jfc/J2Ddemo/java2d/CloningFeature.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/CloningFeature.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -161,7 +161,7 @@ return; } - Component cmps[] = dg.clonePanels[0].getComponents(); + Component[] cmps = dg.clonePanels[0].getComponents(); for (int i = 0; i < cmps.length && thread != null; i++) { if ((dp = (DemoPanel) cmps[i]).tools == null) { continue; diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/DemoGroup.java --- a/src/demo/share/jfc/J2Ddemo/java2d/DemoGroup.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/DemoGroup.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -76,7 +76,7 @@ private final EmptyBorder emptyB = new EmptyBorder(5, 5, 5, 5); private final BevelBorder bevelB = new BevelBorder(BevelBorder.LOWERED); private String groupName; - public JPanel clonePanels[]; + public JPanel[] clonePanels; public JTabbedPane tabbedPane; public DemoGroup(String name, DemoInstVarsAccessor demoInstVars) { @@ -234,9 +234,9 @@ Tools t = dp.tools; t.setVisible(isValid()); t.issueRepaint = issueRepaint; - JToggleButton b[] = { t.toggleB, t.aliasB, t.renderB, + JToggleButton[] b = { t.toggleB, t.aliasB, t.renderB, t.textureB, t.compositeB }; - JCheckBox cb[] = { c.toolBarCB, c.aliasCB, c.renderCB, + JCheckBox[] cb = { c.toolBarCB, c.aliasCB, c.renderCB, c.textureCB, c.compositeCB }; for (int j = 0; j < b.length; j++) { if (c.obj != null && c.obj.equals(cb[j])) { @@ -334,7 +334,7 @@ panel.revalidate(); } - public static void main(String args[]) { + public static void main(String[] args) { class DemoInstVarsAccessorImpl extends DemoInstVarsAccessorImplBase { private volatile JCheckBoxMenuItem ccthreadCB; diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/DemoPanel.java --- a/src/demo/share/jfc/J2Ddemo/java2d/DemoPanel.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/DemoPanel.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -74,8 +74,8 @@ } if (obj instanceof CustomControlsContext) { ccc = (CustomControlsContext) obj; - Component cmps[] = ccc.getControls(); - String cons[] = ccc.getConstraints(); + Component[] cmps = ccc.getControls(); + String[] cons = ccc.getConstraints(); for (int i = 0; i < cmps.length; i++) { add(cmps[i], cons[i]); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/Intro.java --- a/src/demo/share/jfc/J2Ddemo/java2d/Intro.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/Intro.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -157,7 +157,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { final Intro intro = new Intro(); WindowListener l = new WindowAdapter() { @@ -497,7 +497,7 @@ Font f3 = new Font(Font.SERIF, Font.PLAIN, 72); public Director(Surface surf) { - Object partsInfo[][][] = { + Object[][][] partsInfo = { { { "J - scale text on gradient", "0" }, { new GpE(GpE.BURI, myBlack, myBlue, 0, 20), new TxE("J", f1, TxE.SCI, myYellow, 2, 20) } }, @@ -677,7 +677,7 @@ private int type; private double rIncr, sIncr; private double sx, sy, rotate; - private Shape shapes[], txShapes[]; + private Shape[] shapes, txShapes; private int sw; private int numRev; private Paint paint; @@ -1610,7 +1610,7 @@ static final Font font2 = new Font(Font.SERIF, Font.PLAIN, 24); private final FontMetrics fm1; private final FontMetrics fm2; - private static final String table[][] = { { "Graphics", "Antialiased rendering", + private static final String[][] table = { { "Graphics", "Antialiased rendering", "Bezier paths", "Transforms", "Compositing", "Stroking parameters" }, { "Text", "Extended font support", @@ -1622,7 +1622,7 @@ "RenderableImage interface" }, { "Color", "ICC profile support", "Color conversion", "Arbitrary color spaces" } }; - private String list[]; + private String[] list; private int beginning, ending; private int strH; private int endIndex, listIndex; @@ -1687,7 +1687,7 @@ */ static class Contributors implements Part { - private static final String members[] = { + private static final String[] members = { "Brian Lichtenwalter", "Jeannette Hung", "Thanh Nguyen", "Jim Graham", "Jerry Evans", "John Raley", "Michael Peirce", "Robert Kim", diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/J2Ddemo.java --- a/src/demo/share/jfc/J2Ddemo/java2d/J2Ddemo.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/J2Ddemo.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -678,7 +678,7 @@ } - public static void main(final String args[]) { + public static void main(final String[] args) { SwingUtilities.invokeLater(new Runnable() { @Override public void run() { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/MemoryMonitor.java --- a/src/demo/share/jfc/J2Ddemo/java2d/MemoryMonitor.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/MemoryMonitor.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -125,7 +125,7 @@ private Font font = new Font(Font.SERIF, Font.PLAIN, 11); private Runtime r = Runtime.getRuntime(); private int columnInc; - private int pts[]; + private int[] pts; private int ptNum; private int ascent, descent; private Rectangle graphOutlineRect = new Rectangle(); @@ -247,7 +247,7 @@ pts = new int[graphW]; ptNum = 0; } else if (pts.length != graphW) { - int tmp[] = null; + int[] tmp = null; if (ptNum < graphW) { tmp = new int[ptNum]; System.arraycopy(pts, 0, tmp, 0, tmp.length); @@ -337,7 +337,7 @@ } } - public static void main(String s[]) { + public static void main(String[] s) { final MemoryMonitor demo = new MemoryMonitor(); WindowListener l = new WindowAdapter() { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/TextureChooser.java --- a/src/demo/share/jfc/J2Ddemo/java2d/TextureChooser.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/TextureChooser.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -224,7 +224,7 @@ } } - public static void main(String s[]) { + public static void main(String[] s) { Frame f = new Frame("J2D Demo - TextureChooser"); f.addWindowListener(new WindowAdapter() { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Arcs.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Arcs.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Arcs.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -45,7 +45,7 @@ @SuppressWarnings("serial") public class Arcs extends AnimatingSurface { - private static String types[] = { "Arc2D.OPEN", "Arc2D.CHORD", "Arc2D.PIE" }; + private static String[] types = { "Arc2D.OPEN", "Arc2D.CHORD", "Arc2D.PIE" }; private static final int CLOSE = 0; private static final int OPEN = 1; private static final int FORWARD = 0; @@ -159,7 +159,7 @@ g2.fill(at.createTransformedShape(pieArc)); } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Arcs()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/BezierAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/BezierAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/BezierAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -74,8 +74,8 @@ protected BasicStroke dashed = new BasicStroke(10.0f, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND, 10, new float[] { 5 }, 0); - private float animpts[] = new float[NUMPTS * 2]; - private float deltas[] = new float[NUMPTS * 2]; + private float[] animpts = new float[NUMPTS * 2]; + private float[] deltas = new float[NUMPTS * 2]; protected Paint fillPaint, drawPaint; protected boolean doFill = true; protected boolean doDraw = true; @@ -173,7 +173,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new BezierAnim()); } @@ -194,21 +194,21 @@ tp2 = new TexturePaint(bi, new Rectangle(0, 0, 2, 1)); } BezierAnim demo; - static Paint drawPaints[] = { new Color(0, 0, 0, 0), BLUE, new Color(0, + static Paint[] drawPaints = { new Color(0, 0, 0, 0), BLUE, new Color(0, 0, 255, 126), BLUE, tp2 }; - static String drawName[] = { "No Draw", "Blue", "Blue w/ Alpha", + static String[] drawName = { "No Draw", "Blue", "Blue w/ Alpha", "Blue Dash", "Texture" }; - static Paint fillPaints[] = { new Color(0, 0, 0, 0), GREEN, new Color(0, + static Paint[] fillPaints = { new Color(0, 0, 0, 0), GREEN, new Color(0, 255, 0, 126), tp1, new GradientPaint(0, 0, RED, 30, 30, YELLOW) }; - String fillName[] = { "No Fill", "Green", "Green w/ Alpha", "Texture", + String[] fillName = { "No Fill", "Green", "Green w/ Alpha", "Texture", "Gradient" }; JMenu fillMenu, drawMenu; - JMenuItem fillMI[] = new JMenuItem[fillPaints.length]; - JMenuItem drawMI[] = new JMenuItem[drawPaints.length]; - PaintedIcon fillIcons[] = new PaintedIcon[fillPaints.length]; - PaintedIcon drawIcons[] = new PaintedIcon[drawPaints.length]; + JMenuItem[] fillMI = new JMenuItem[fillPaints.length]; + JMenuItem[] drawMI = new JMenuItem[drawPaints.length]; + PaintedIcon[] fillIcons = new PaintedIcon[fillPaints.length]; + PaintedIcon[] drawIcons = new PaintedIcon[drawPaints.length]; Font font = new Font(Font.SERIF, Font.PLAIN, 10); @SuppressWarnings("LeakingThisInConstructor") diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Curves.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Curves.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Curves.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -52,7 +52,7 @@ @SuppressWarnings("serial") public class Curves extends Surface { - private static Color colors[] = { BLUE, GREEN, RED }; + private static Color[] colors = { BLUE, GREEN, RED }; public Curves() { setBackground(WHITE); @@ -136,7 +136,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Curves()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Ellipses.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Ellipses.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Arcs_Curves/Ellipses.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -44,12 +44,12 @@ @SuppressWarnings("serial") public final class Ellipses extends AnimatingSurface { - private static Color colors[] = { + private static Color[] colors = { BLUE, CYAN, GREEN, MAGENTA, ORANGE, PINK, RED, YELLOW, LIGHT_GRAY, WHITE }; private Ellipse2D.Float[] ellipses; - private double esize[]; - private float estroke[]; + private double[] esize; + private float[] estroke; private double maxSize; public Ellipses() { @@ -102,7 +102,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Ellipses()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Areas.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Areas.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Areas.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -141,7 +141,7 @@ g2.draw(area); } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Areas()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/ClipAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/ClipAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/ClipAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -61,7 +61,7 @@ big.fillRect(0, 0, 3, 3); texturePaint = new TexturePaint(bi, new Rectangle(0, 0, 5, 5)); } - private AnimVal animval[] = new AnimVal[3]; + private AnimVal[] animval = new AnimVal[3]; protected boolean doObjects = true; private Font originalFont = new Font(Font.SERIF, Font.PLAIN, 12); private Font font; @@ -158,7 +158,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new ClipAnim()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Intersection.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Intersection.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Intersection.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -171,7 +171,7 @@ } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Intersection()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Text.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Text.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Clipping/Text.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -161,7 +161,7 @@ g2.draw(shape); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Text()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/BullsEye.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/BullsEye.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/BullsEye.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -53,7 +53,7 @@ @Override public void render(int w, int h, Graphics2D g2) { - Color reds[] = { RED.darker(), RED }; + Color[] reds = { RED.darker(), RED }; for (int N = 0; N < 18; N++) { float i = (N + 2) / 2.0f; float x = (5 + i * (w / 2 / 10)); @@ -70,7 +70,7 @@ } } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new BullsEye()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/ColorConvert.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/ColorConvert.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/ColorConvert.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -65,7 +65,7 @@ public class ColorConvert extends Surface { private static Image img; - private static Color colors[] = { red, pink, orange, + private static Color[] colors = { red, pink, orange, yellow, green, magenta, cyan, blue }; public ColorConvert() { @@ -123,7 +123,7 @@ g2.drawImage(dstImg, w / 2 + 10, 20, w / 2 - 20, h - 30, null); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new ColorConvert()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/Rotator3D.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/Rotator3D.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Colors/Rotator3D.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -50,7 +50,7 @@ @SuppressWarnings("serial") public class Rotator3D extends AnimatingSurface { - private Objects3D objs[] = new Objects3D[3]; + private Objects3D[] objs = new Objects3D[3]; private static final int[][][] polygons = { // Solid cube { { 5, 1, 15, 13, 21, 23, 15 }, @@ -142,7 +142,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Rotator3D()); } @@ -170,8 +170,8 @@ private double ix = 3.0, iy = 3.0; private double[][] rotPts; private int[][] scrPts; - private int xx[] = new int[20]; - private int yy[] = new int[20]; + private int[] xx = new int[20]; + private int[] yy = new int[20]; private double x, y; private int p, j; private int colour; diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACimages.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACimages.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACimages.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -61,11 +61,11 @@ @SuppressWarnings("serial") public class ACimages extends Surface { - private static final String s[] = { "box", "fight", "magnify", + private static final String[] s = { "box", "fight", "magnify", "boxwave", "globe", "snooze", "tip", "thumbsup", "dukeplug" }; - private static Image imgs[] = new Image[s.length]; - private static Color colors[] = { BLUE, CYAN, GREEN, + private static Image[] imgs = new Image[s.length]; + private static Color[] colors = { BLUE, CYAN, GREEN, MAGENTA, ORANGE, PINK, RED, YELLOW, LIGHT_GRAY }; public ACimages() { @@ -121,7 +121,7 @@ } } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new ACimages()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACrules.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACrules.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/ACrules.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -64,7 +64,7 @@ @SuppressWarnings("serial") public class ACrules extends AnimatingSurface { - private static String compNames[] = { + private static String[] compNames = { "Src", "SrcOver", "SrcIn", @@ -77,17 +77,17 @@ "DstOut", "DstAtop", "Xor", }; - private static final AlphaComposite compObjs[] = { + private static final AlphaComposite[] compObjs = { Src, SrcOver, SrcIn, SrcOut, SrcAtop, Clear, Dst, DstOver, DstIn, DstOut, DstAtop, Xor, }; private static final int NUM_RULES = compObjs.length; private static final int HALF_NUM_RULES = NUM_RULES / 2; private int fadeIndex; - private static float fadeValues[][] = { + private static float[][] fadeValues = { { 1.0f, -0.1f, 0.0f, 1.0f, 0.0f, 1.0f }, { 0.0f, 0.1f, 1.0f, 1.0f, -0.1f, 0.0f }, { 1.0f, 0.0f, 1.0f, 0.0f, 0.1f, 1.0f }, }; - private static String fadeNames[] = { + private static String[] fadeNames = { "Src => transparent, Dest opaque", "Src => opaque, Dest => transparent", "Src opaque, Dest => opaque", }; @@ -257,7 +257,7 @@ return bi; } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new ACrules()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/FadeAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/FadeAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/FadeAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -107,18 +107,18 @@ texturePaint = new TexturePaint(bi, new Rectangle(0, 0, w, h)); } private static BasicStroke bs = new BasicStroke(6); - private static Font fonts[] = { + private static Font[] fonts = { new Font(Font.SERIF, Font.PLAIN, 64), new Font(Font.SERIF, Font.BOLD | Font.ITALIC, 24), new Font(Font.MONOSPACED, Font.BOLD, 36), new Font(Font.SANS_SERIF, Font.BOLD | Font.ITALIC, 48), new Font(Font.SANS_SERIF, Font.PLAIN, 52) }; - private static String strings[] = { + private static String[] strings = { "Alpha", "Composite", "Src", "SrcOver", "SrcIn", "SrcOut", "Clear", "DstOver", "DstIn" }; - private static String imgs[] = { + private static String[] imgs = { "jumptojavastrip.png", "duke.png", "star7.png" }; - private static Paint paints[] = { + private static Paint[] paints = { RED, BLUE, GREEN, MAGENTA, ORANGE, PINK, CYAN, texturePaint, YELLOW, LIGHT_GRAY, WHITE }; @@ -276,7 +276,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new FadeAnim()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AllFonts.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AllFonts.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AllFonts.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -125,7 +125,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new AllFonts()); } @@ -135,9 +135,9 @@ AllFonts demo; JSlider slider; - int fsize[] = { 8, 14, 18, 24 }; - JMenuItem menuitem[] = new JMenuItem[fsize.length]; - Font font[] = new Font[fsize.length]; + int[] fsize = { 8, 14, 18, 24 }; + JMenuItem[] menuitem = new JMenuItem[fsize.length]; + Font[] font = new Font[fsize.length]; @SuppressWarnings("LeakingThisInConstructor") public DemoControls(AllFonts demo) { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AttributedStr.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AttributedStr.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/AttributedStr.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -184,7 +184,7 @@ } } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new AttributedStr()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Highlighting.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Highlighting.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Highlighting.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -55,8 +55,8 @@ @SuppressWarnings("serial") public class Highlighting extends AnimatingSurface { - private static String text[] = { "HIGHLIGHTING", "OpenJDK" }; - private static Color colors[] = { CYAN, LIGHT_GRAY }; + private static String[] text = { "HIGHLIGHTING", "OpenJDK" }; + private static Color[] colors = { CYAN, LIGHT_GRAY }; private static Font smallF = new Font("Monospaced", Font.PLAIN, 8); private int[] curPos; private TextLayout[] layouts; @@ -129,7 +129,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Highlighting()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Outline.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Outline.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Outline.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -109,7 +109,7 @@ g2.fill(sha); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Outline()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Tree.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Tree.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Fonts/Tree.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -90,7 +90,7 @@ static double Twidth = 0.6; static double Rwidth = 0.6; static double FontHeight = 0.75; - static Color colors[] = { BLUE, + static Color[] colors = { BLUE, RED.darker(), GREEN.darker() }; @@ -123,7 +123,7 @@ g2d.setTransform(new AffineTransform()); } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Tree()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Images/DukeAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/DukeAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/DukeAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -91,7 +91,7 @@ return isShowing(); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new DukeAnim()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Images/ImageOps.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/ImageOps.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/ImageOps.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -66,12 +66,12 @@ public class ImageOps extends ControlsSurface implements ChangeListener { protected JSlider slider1, slider2; - private static final String imgName[] = { "bld.jpg", "boat.png" }; - private static final BufferedImage img[] = new BufferedImage[imgName.length]; - private static final String opsName[] = { + private static final String[] imgName = { "bld.jpg", "boat.png" }; + private static final BufferedImage[] img = new BufferedImage[imgName.length]; + private static final String[] opsName = { "Threshold", "RescaleOp", "Invert", "Yellow Invert", "3x3 Blur", "3x3 Sharpen", "3x3 Edge", "5x5 Edge" }; - private static final BufferedImageOp biop[] = + private static final BufferedImageOp[] biop = new BufferedImageOp[opsName.length]; private static int rescaleFactor = 128; private static float rescaleOffset = 0; @@ -82,8 +82,8 @@ thresholdOp(low, high); int i = 1; biop[i++] = new RescaleOp(1.0f, 0, null); - byte invert[] = new byte[256]; - byte ordered[] = new byte[256]; + byte[] invert = new byte[256]; + byte[] ordered = new byte[256]; for (int j = 0; j < 256; j++) { invert[j] = (byte) (256 - j); ordered[j] = (byte) j; @@ -91,8 +91,8 @@ biop[i++] = new LookupOp(new ByteLookupTable(0, invert), null); byte[][] yellowInvert = new byte[][] { invert, invert, ordered }; biop[i++] = new LookupOp(new ByteLookupTable(0, yellowInvert), null); - int dim[][] = { { 3, 3 }, { 3, 3 }, { 3, 3 }, { 5, 5 } }; - float data[][] = { { 0.1f, 0.1f, 0.1f, // 3x3 blur + int[][] dim = { { 3, 3 }, { 3, 3 }, { 3, 3 }, { 5, 5 } }; + float[][] data = { { 0.1f, 0.1f, 0.1f, // 3x3 blur 0.1f, 0.2f, 0.1f, 0.1f, 0.1f, 0.1f }, { -1.0f, -1.0f, -1.0f, // 3x3 sharpen @@ -134,7 +134,7 @@ } public static void thresholdOp(int low, int high) { - byte threshold[] = new byte[256]; + byte[] threshold = new byte[256]; for (int j = 0; j < 256; j++) { if (j > high) { threshold[j] = (byte) 255; @@ -180,7 +180,7 @@ repaint(); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new ImageOps()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Images/JPEGFlip.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/JPEGFlip.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/JPEGFlip.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -176,7 +176,7 @@ g2.drawLine(0, hh, w, hh); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new JPEGFlip()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Images/WarpImage.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/WarpImage.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Images/WarpImage.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -51,7 +51,7 @@ private static Image img; private static final int FORWARD = 0; private static final int BACK = 1; - private Point2D pts[]; + private Point2D[] pts; private int direction = FORWARD; private int pNum; private int x, y; @@ -73,7 +73,7 @@ CubicCurve2D cc = new CubicCurve2D.Float( w * .2f, h * .5f, w * .4f, 0, w * .6f, h, w * .8f, h * .5f); PathIterator pi = cc.getPathIterator(null, 0.1); - Point2D tmp[] = new Point2D[200]; + Point2D[] tmp = new Point2D[200]; int i = 0; while (!pi.isDone()) { float[] coords = new float[6]; @@ -128,7 +128,7 @@ this); } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new WarpImage()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Caps.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Caps.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Caps.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -53,8 +53,8 @@ @SuppressWarnings("serial") public class Caps extends Surface { - private static int cap[] = { CAP_BUTT, CAP_ROUND, CAP_SQUARE }; - private static String desc[] = { "Butt Cap", "Round Cap", "Square Cap" }; + private static int[] cap = { CAP_BUTT, CAP_ROUND, CAP_SQUARE }; + private static String[] desc = { "Butt Cap", "Round Cap", "Square Cap" }; public Caps() { setBackground(WHITE); @@ -75,7 +75,7 @@ } } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Caps()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Dash.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Dash.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Dash.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -76,11 +76,11 @@ int x = 0; int y = h - 34; - BasicStroke bs[] = new BasicStroke[6]; + BasicStroke[] bs = new BasicStroke[6]; float j = 1.1f; for (int i = 0; i < bs.length; i++, j += 1.0f) { - float dash[] = { j }; + float[] dash = { j }; BasicStroke b = new BasicStroke(1.0f, BasicStroke.CAP_BUTT, BasicStroke.JOIN_MITER, 10.0f, dash, 0.0f); g2.setStroke(b); @@ -128,7 +128,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Dash()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Joins.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Joins.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/Joins.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -113,7 +113,7 @@ g2.draw(bs.createStrokedShape(p)); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Joins()); } @@ -121,12 +121,12 @@ class DemoControls extends CustomControls implements ActionListener { Joins demo; - int joinType[] = { BasicStroke.JOIN_MITER, + int[] joinType = { BasicStroke.JOIN_MITER, BasicStroke.JOIN_ROUND, BasicStroke.JOIN_BEVEL }; - String joinName[] = { "Mitered Join", "Rounded Join", "Beveled Join" }; + String[] joinName = { "Mitered Join", "Rounded Join", "Beveled Join" }; JMenu menu; - JMenuItem menuitem[] = new JMenuItem[joinType.length]; - JoinIcon icons[] = new JoinIcon[joinType.length]; + JMenuItem[] menuitem = new JMenuItem[joinType.length]; + JoinIcon[] icons = new JoinIcon[joinType.length]; JToolBar toolbar; @SuppressWarnings("LeakingThisInConstructor") diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/LineAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/LineAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Lines/LineAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -55,18 +55,18 @@ @SuppressWarnings("serial") public class LineAnim extends AnimatingSurface { - private static int caps[] = { BasicStroke.CAP_BUTT, + private static int[] caps = { BasicStroke.CAP_BUTT, BasicStroke.CAP_SQUARE, BasicStroke.CAP_ROUND }; - private static int joins[] = { BasicStroke.JOIN_MITER, + private static int[] joins = { BasicStroke.JOIN_MITER, BasicStroke.JOIN_BEVEL, BasicStroke.JOIN_ROUND }; - private static Color colors[] = { GRAY, PINK, LIGHT_GRAY }; + private static Color[] colors = { GRAY, PINK, LIGHT_GRAY }; private static BasicStroke bs1 = new BasicStroke(1.0f); private static final int CLOCKWISE = 0; - private Line2D lines[] = new Line2D[3]; - private int rAmt[] = new int[lines.length]; - private int direction[] = new int[lines.length]; - private int speed[] = new int[lines.length]; - private BasicStroke strokes[] = new BasicStroke[lines.length]; + private Line2D[] lines = new Line2D[3]; + private int[] rAmt = new int[lines.length]; + private int[] direction = new int[lines.length]; + private int[] speed = new int[lines.length]; + private BasicStroke[] strokes = new BasicStroke[lines.length]; private GeneralPath path; private Point2D[] pts; private float size; @@ -158,7 +158,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new LineAnim()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Balls.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Balls.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Balls.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -65,11 +65,11 @@ @SuppressWarnings("serial") public class Balls extends AnimatingControlsSurface { - private static Color colors[] = { RED, ORANGE, YELLOW, GREEN.darker(), BLUE, + private static Color[] colors = { RED, ORANGE, YELLOW, GREEN.darker(), BLUE, new Color(75, 00, 82), new Color(238, 130, 238) }; private long now, deltaT, lasttime; private boolean active; - protected Ball balls[] = new Ball[colors.length]; + protected Ball[] balls = new Ball[colors.length]; protected boolean clearToggle; protected JComboBox combo; @@ -129,7 +129,7 @@ lasttime = now; } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Balls()); } @@ -141,7 +141,7 @@ public float x, y; public float Vx = 0.1f; public float Vy = 0.05f; - public BufferedImage imgs[]; + public BufferedImage[] imgs; // Pick a random starting image index, but not the last: we're going UP // and that would throw us off the end. public int index = (int) (random() * (nImgs - 1)); @@ -182,11 +182,11 @@ imgs = new BufferedImage[nImgs]; int bg = 255; - byte red[] = new byte[256]; + byte[] red = new byte[256]; red[0] = (byte) bg; - byte green[] = new byte[256]; + byte[] green = new byte[256]; green[0] = (byte) bg; - byte blue[] = new byte[256]; + byte[] blue = new byte[256]; blue[0] = (byte) bg; for (int r = 0; r < imgs.length; r++) { @@ -202,7 +202,7 @@ IndexColorModel icm = new IndexColorModel(8, maxr + 1, red, green, blue, 0); DataBufferByte dbb = new DataBufferByte(data, data.length); - int bandOffsets[] = { 0 }; + int[] bandOffsets = { 0 }; WritableRaster wr = Raster.createInterleavedRaster(dbb, R * 2, R * 2, R * 2, 1, bandOffsets, null); imgs[r] = new BufferedImage(icm, wr, icm.isAlphaPremultiplied(), diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/BezierScroller.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/BezierScroller.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/BezierScroller.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -72,7 +72,7 @@ @SuppressWarnings("serial") public class BezierScroller extends AnimatingControlsSurface { - private static String appletStrs[] = { " ", "J2Ddemo", + private static String[] appletStrs = { " ", "J2Ddemo", "BezierScroller - Animated Bezier Curve shape with images", "For README.txt file scrolling run in application mode", " " }; private static final int NUMPTS = 6; @@ -84,8 +84,8 @@ private static BufferedImage img; private static final int UP = 0; private static final int DOWN = 1; - private float animpts[] = new float[NUMPTS * 2]; - private float deltas[] = new float[NUMPTS * 2]; + private float[] animpts = new float[NUMPTS * 2]; + private float[] deltas = new float[NUMPTS * 2]; private BufferedReader reader; private int nStrs; private int strH; @@ -293,7 +293,7 @@ g2.fill(gp); PathIterator pi = gp.getPathIterator(null); - float pts[] = new float[6]; + float[] pts = new float[6]; while (!pi.isDone()) { if (pi.currentSegment(pts) == PathIterator.SEG_CUBICTO) { g2.drawImage(hotj_img, (int) pts[0], (int) pts[1], this); @@ -310,7 +310,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new BezierScroller()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Stars3D.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Stars3D.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Mix/Stars3D.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -67,7 +67,7 @@ @SuppressWarnings("serial") public class Stars3D extends ControlsSurface { - private static Color colors[] = { RED, GREEN, WHITE }; + private static Color[] colors = { RED, GREEN, WHITE }; private static AffineTransform at = AffineTransform.getTranslateInstance(-5, -5); private Shape shape, tshape; @@ -99,8 +99,8 @@ tshape = at.createTransformedShape(shape); PathIterator pi = shape.getPathIterator(null); - float seg[] = new float[6]; - float tseg[] = new float[6]; + float[] seg = new float[6]; + float[] tseg = new float[6]; GeneralPath working = new GeneralPath(Path2D.WIND_NON_ZERO); float x = 0, y = 0; // Current point on the path @@ -247,7 +247,7 @@ g2.draw(shape); } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new Stars3D()); } @@ -306,8 +306,8 @@ return; } int length = getSize().width / 4; - int size[] = { length, length }; - String str[] = { "OpenJDK", "J2D" }; + int[] size = { length, length }; + String[] str = { "OpenJDK", "J2D" }; while (thread == me) { for (int i = 0; i < str.length; i++) { demo.fontSize = size[i]; diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/GradAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/GradAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/GradAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -258,7 +258,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new GradAnim()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Gradient.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Gradient.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Gradient.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -93,7 +93,7 @@ (int) (h / 2 + tl.getBounds().getHeight() / 2)); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Gradient()); } @@ -101,13 +101,13 @@ static class DemoControls extends CustomControls implements ActionListener { Gradient demo; - Color colors[] = { red, orange, yellow, green, blue, lightGray, cyan, + Color[] colors = { red, orange, yellow, green, blue, lightGray, cyan, magenta }; - String colorName[] = { "Red", "Orange", "Yellow", "Green", + String[] colorName = { "Red", "Orange", "Yellow", "Green", "Blue", "lightGray", "Cyan", "Magenta" }; - JMenuItem innerMI[] = new JMenuItem[colors.length]; - JMenuItem outerMI[] = new JMenuItem[colors.length]; - ColoredSquare squares[] = new ColoredSquare[colors.length]; + JMenuItem[] innerMI = new JMenuItem[colors.length]; + JMenuItem[] outerMI = new JMenuItem[colors.length]; + ColoredSquare[] squares = new ColoredSquare[colors.length]; JMenu imenu, omenu; @SuppressWarnings("LeakingThisInConstructor") diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Texture.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Texture.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/Texture.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -166,7 +166,7 @@ g2.fill(sha); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Texture()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/TextureAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/TextureAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paint/TextureAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -80,7 +80,7 @@ private boolean sheary = false; private boolean showanchor = true; private AnimVal w, h, x, y, rot, shx, shy; - private static Image img[] = new Image[2]; + private static Image[] img = new Image[2]; public TextureAnim() { img[0] = getImage("duke.gif"); // 8 bit gif @@ -218,7 +218,7 @@ } } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new TextureAnim()); } @@ -301,7 +301,7 @@ JToolBar toolbar; JComboBox combo; JMenu menu; - JMenuItem menuitems[]; + JMenuItem[] menuitems; int iconSize = 20; ButtonBorder buttonBorder = new ButtonBorder(); diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/Append.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/Append.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/Append.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -77,7 +77,7 @@ g2.drawString("Append, connect", (int) (w * .25), (int) (h * .6) - 5); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Append()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/CurveQuadTo.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/CurveQuadTo.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/CurveQuadTo.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -66,7 +66,7 @@ g2.drawString("quadTo", (int) (w * .2), (int) (h * .6f) - 5); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new CurveQuadTo()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/FillStroke.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/FillStroke.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/FillStroke.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -69,7 +69,7 @@ tl.draw(g2, (float) (w / 2 - tl.getBounds().getWidth() / 2), h * .85f); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new FillStroke()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/WindingRule.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/WindingRule.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Paths/WindingRule.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -86,7 +86,7 @@ g2.drawString("EVEN_ODD rule", 0, -5); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new WindingRule()); } } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/Rotate.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/Rotate.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/Rotate.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -99,7 +99,7 @@ g2.drawString("Rotate", 5, 15); } - public static void main(String s[]) { + public static void main(String[] s) { createDemoFrame(new Rotate()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/SelectTx.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/SelectTx.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/SelectTx.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -232,7 +232,7 @@ } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new SelectTx()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/TransformAnim.java --- a/src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/TransformAnim.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/J2Ddemo/java2d/demos/Transforms/TransformAnim.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -107,16 +107,16 @@ } private static BasicStroke bs = new BasicStroke(6); - private static Font fonts[] = { + private static Font[] fonts = { new Font(Font.SERIF, PLAIN, 48), new Font(Font.SERIF, BOLD|ITALIC, 24), new Font(Font.MONOSPACED, BOLD, 36), new Font(Font.SANS_SERIF, BOLD|ITALIC, 64), new Font(Font.SANS_SERIF, PLAIN, 52)}; - private static String strings[] = { + private static String[] strings = { "Transformation", "Rotate", "Translate", "Shear", "Scale" }; - private static String imgs[] = { "duke.png" }; - private static Paint paints[] = { + private static String[] imgs = { "duke.png" }; + private static Paint[] paints = { RED, BLUE, texturePaint, GREEN, MAGENTA, ORANGE, PINK, CYAN, new Color(0, 255, 0, 128), new Color(0, 0, 255, 128), YELLOW, LIGHT_GRAY, WHITE}; @@ -253,7 +253,7 @@ } - public static void main(String argv[]) { + public static void main(String[] argv) { createDemoFrame(new TransformAnim()); } diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/SampleTree/SampleTree.java --- a/src/demo/share/jfc/SampleTree/SampleTree.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/SampleTree/SampleTree.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -615,7 +615,7 @@ } } // End of class SampleTree.TreeEditableChangeListener - public static void main(String args[]) { + public static void main(String[] args) { try { SwingUtilities.invokeAndWait(new Runnable() { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/SwingSet2/BezierAnimationPanel.java --- a/src/demo/share/jfc/SwingSet2/BezierAnimationPanel.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/SwingSet2/BezierAnimationPanel.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -64,11 +64,11 @@ public final int NUMPTS = 6; - float animpts[] = new float[NUMPTS * 2]; + float[] animpts = new float[NUMPTS * 2]; - float deltas[] = new float[NUMPTS * 2]; + float[] deltas = new float[NUMPTS * 2]; - float staticpts[] = { + float[] staticpts = { 50.0f, 0.0f, 150.0f, 0.0f, 200.0f, 75.0f, @@ -77,7 +77,7 @@ 0.0f, 75.0f, }; - float movepts[] = new float[staticpts.length]; + float[] movepts = new float[staticpts.length]; BufferedImage img; diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/SwingSet2/ListDemo.java --- a/src/demo/share/jfc/SwingSet2/ListDemo.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/SwingSet2/ListDemo.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -350,7 +350,7 @@ } } - ImageIcon images[] = new ImageIcon[7]; + ImageIcon[] images = new ImageIcon[7]; void loadImages() { images[0] = createImageIcon("list/red.gif", getString("ListDemo.red")); images[1] = createImageIcon("list/blue.gif", getString("ListDemo.blue")); diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/SwingSet2/TabbedPaneDemo.java --- a/src/demo/share/jfc/SwingSet2/TabbedPaneDemo.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/SwingSet2/TabbedPaneDemo.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,6 +1,6 @@ /* * - * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -149,19 +149,19 @@ class HeadSpin extends JComponent implements ActionListener { javax.swing.Timer animator; - ImageIcon icon[] = new ImageIcon[6]; + ImageIcon[] icon = new ImageIcon[6]; int tmpScale; static final int numImages = 6; - double x[] = new double[numImages]; - double y[] = new double[numImages]; + double[] x = new double[numImages]; + double[] y = new double[numImages]; - int xh[] = new int[numImages]; - int yh[] = new int[numImages]; + int[] xh = new int[numImages]; + int[] yh = new int[numImages]; - double scale[] = new double[numImages]; + double[] scale = new double[numImages]; public HeadSpin() { setBackground(Color.black); diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/TableExample/TableExample.java --- a/src/demo/share/jfc/TableExample/TableExample.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/TableExample/TableExample.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -248,7 +248,7 @@ return scrollpane; } - public static void main(String s[]) { + public static void main(String[] s) { // Trying to set Nimbus look and feel try { for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) { diff -r b43c2aa001a5 -r de9486d74a74 src/demo/share/jfc/TableExample/TableSorter.java --- a/src/demo/share/jfc/TableExample/TableSorter.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/demo/share/jfc/TableExample/TableSorter.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -71,7 +71,7 @@ @SuppressWarnings("serial") public final class TableSorter extends TableMap { - int indexes[]; + int[] indexes; List sortingColumns = new ArrayList(); boolean ascending = true; int compares; @@ -249,7 +249,7 @@ // arrays. The number of compares appears to vary between N-1 and // NlogN depending on the initial order but the main reason for // using it here is that, unlike qsort, it is stable. - public void shuttlesort(int from[], int to[], int low, int high) { + public void shuttlesort(int[] from, int[] to, int low, int high) { if (high - low < 2) { return; } diff -r b43c2aa001a5 -r de9486d74a74 src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/AWTEventMonitor.java --- a/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/AWTEventMonitor.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/AWTEventMonitor.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2018, 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 @@ -669,7 +669,7 @@ * @see AWTEventMonitor */ protected void installListeners() { - Window topLevelWindows[] = EventQueueMonitor.getTopLevelWindows(); + Window[] topLevelWindows = EventQueueMonitor.getTopLevelWindows(); if (topLevelWindows != null) { for (int i = 0; i < topLevelWindows.length; i++) { installListeners(topLevelWindows[i]); @@ -685,7 +685,7 @@ * @see EventID */ protected void installListeners(int eventID) { - Window topLevelWindows[] = EventQueueMonitor.getTopLevelWindows(); + Window[] topLevelWindows = EventQueueMonitor.getTopLevelWindows(); if (topLevelWindows != null) { for (int i = 0; i < topLevelWindows.length; i++) { installListeners(topLevelWindows[i], eventID); @@ -943,7 +943,7 @@ * @see EventID */ protected void removeListeners(int eventID) { - Window topLevelWindows[] = EventQueueMonitor.getTopLevelWindows(); + Window[] topLevelWindows = EventQueueMonitor.getTopLevelWindows(); if (topLevelWindows != null) { for (int i = 0; i < topLevelWindows.length; i++) { removeListeners(topLevelWindows[i], eventID); diff -r b43c2aa001a5 -r de9486d74a74 src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/AccessibilityEventMonitor.java --- a/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/AccessibilityEventMonitor.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/AccessibilityEventMonitor.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2018, 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 @@ -128,7 +128,7 @@ * @see AWTEventMonitor */ protected void installListeners() { - Window topLevelWindows[] = EventQueueMonitor.getTopLevelWindows(); + Window[] topLevelWindows = EventQueueMonitor.getTopLevelWindows(); if (topLevelWindows != null) { for (int i = 0; i < topLevelWindows.length; i++) { if (topLevelWindows[i] instanceof Accessible) { @@ -206,7 +206,7 @@ * @see EventID */ protected void removeListeners() { - Window topLevelWindows[] = EventQueueMonitor.getTopLevelWindows(); + Window[] topLevelWindows = EventQueueMonitor.getTopLevelWindows(); if (topLevelWindows != null) { for (int i = 0; i < topLevelWindows.length; i++) { if (topLevelWindows[i] instanceof Accessible) { diff -r b43c2aa001a5 -r de9486d74a74 src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/Translator.java --- a/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/Translator.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/Translator.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2018, 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 @@ -318,7 +318,7 @@ if (source instanceof Component) { Container parent = ((Component) source).getParent(); if (parent != null) { - Component ca[] = parent.getComponents(); + Component[] ca = parent.getComponents(); for (int i = 0; i < ca.length; i++) { if (source.equals(ca[i])) { return i; diff -r b43c2aa001a5 -r de9486d74a74 src/jdk.accessibility/windows/classes/com/sun/java/accessibility/internal/AccessBridge.java --- a/src/jdk.accessibility/windows/classes/com/sun/java/accessibility/internal/AccessBridge.java Mon Oct 01 12:06:44 2018 +0200 +++ b/src/jdk.accessibility/windows/classes/com/sun/java/accessibility/internal/AccessBridge.java Tue Oct 09 18:25:57 2018 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2018, 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 @@ -291,9 +291,9 @@ * map an HWND to an AWT Component */ private void initHWNDcalls() { - Class integerParemter[] = new Class[1]; + Class[] integerParemter = new Class[1]; integerParemter[0] = Integer.TYPE; - Class componentParemter[] = new Class[1]; + Class[] componentParemter = new Class[1]; try { componentParemter[0] = Class.forName("java.awt.Component"); } catch (ClassNotFoundException e) {