getNormalText instead.
+ * return correct values, user getNormalText instead.
*/
public class LinkLabel extends JLabel {
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromCacheFrame.java b/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromCacheFrame.java
index 0a744bd37..2a6a417b3 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromCacheFrame.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromCacheFrame.java
@@ -182,7 +182,6 @@ public class LoadFromCacheFrame extends AppFrame implements ActionListener {
}
filter();
-
return null;
}
@@ -195,7 +194,6 @@ public class LoadFromCacheFrame extends AppFrame implements ActionListener {
}
}.execute();
-
}
private void filter() {
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromMemoryFrame.java b/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromMemoryFrame.java
index fdac07b91..e95f7673d 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromMemoryFrame.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/LoadFromMemoryFrame.java
@@ -164,14 +164,13 @@ public class LoadFromMemoryFrame extends AppFrame implements ActionListener {
private void addResultRow(SwfInMemory swf) {
if (swf != null) {
com.jpexs.process.Process process = swf.process;
- resTableModel.addRow(new Object[] {swf.version, swf.fileSize, process.getPid(), process.getFileName()});
- }
- else {
+ resTableModel.addRow(new Object[]{swf.version, swf.fileSize, process.getPid(), process.getFileName()});
+ } else {
String notFound = translate("notfound");
- resTableModel.addRow(new Object[] {notFound, 0, "", ""});
+ resTableModel.addRow(new Object[]{notFound, 0, "", ""});
}
}
-
+
private void refreshList() {
model.clear();
processlist = ProcessTools.listProcesses();
@@ -386,8 +385,6 @@ public class LoadFromMemoryFrame extends AppFrame implements ActionListener {
progress.setVisible(false);
rightPanel.add(statePanel, BorderLayout.NORTH);
-
-
cnt.add(new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftPanel, rightPanel), BorderLayout.CENTER);
View.setWindowIcon(this);
View.centerScreen(this);
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/LogFormatter.java b/trunk/src/com/jpexs/decompiler/flash/gui/LogFormatter.java
index 4ee8c871c..3a34db4ad 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/LogFormatter.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/LogFormatter.java
@@ -38,8 +38,9 @@ public class LogFormatter extends Formatter {
public String format(LogRecord record) {
StringBuilder buf = new StringBuilder(180);
- if (dateFormat == null)
+ if (dateFormat == null) {
dateFormat = new SimpleDateFormat("HH:mm:ss.SSS");
+ }
buf.append(dateFormat.format(new Date(record.getMillis())));
buf.append(" > ");
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/Main.java b/trunk/src/com/jpexs/decompiler/flash/gui/Main.java
index 0332a9b1a..03e08bde8 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/Main.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/Main.java
@@ -144,7 +144,7 @@ public class Main {
addTrayIcon();
switchProxy();
}
-
+
public static void showProxy() {
if (proxyFrame == null) {
proxyFrame = new ProxyFrame(mainFrame);
@@ -211,14 +211,14 @@ public class Main {
public static SWFList parseSWF(SWFSourceInfo sourceInfo) throws Exception {
SWFList result = new SWFList();
-
+
InputStream inputStream = sourceInfo.getInputStream();
SWFBundle bundle = null;
if (inputStream == null) {
inputStream = new BufferedInputStream(new FileInputStream(sourceInfo.getFile()));
bundle = sourceInfo.getBundle();
logger.log(Level.INFO, "Load file: {0}", sourceInfo.getFile());
- } else if (inputStream instanceof SeekableInputStream
+ } else if (inputStream instanceof SeekableInputStream
|| inputStream instanceof BufferedInputStream) {
try {
inputStream.reset();
@@ -227,7 +227,7 @@ public class Main {
}
logger.log(Level.INFO, "Load stream: {0}", sourceInfo.getFileTitle());
}
-
+
Stopwatch sw = Stopwatch.startNew();
if (bundle != null) {
result.isBundle = true;
@@ -256,7 +256,7 @@ public class Main {
swf.fileTitle = sourceInfo.getFileTitle();
result.add(swf);
}
-
+
if (inputStream instanceof FileInputStream) {
logger.log(Level.INFO, "File loaded in {0} seconds.", (sw.getElapsedMilliseconds() / 1000));
inputStream.close();
@@ -294,14 +294,14 @@ public class Main {
}
});
}
-
+
return result;
}
public static void saveFile(SWF swf, String outfile) throws IOException {
saveFile(swf, outfile, SaveFileMode.SAVE);
}
-
+
public static void saveFile(SWF swf, String outfile, SaveFileMode mode) throws IOException {
if (mode == SaveFileMode.SAVEAS) {
swf.file = outfile;
@@ -311,9 +311,9 @@ public class Main {
FileOutputStream fos = new FileOutputStream(tmpFile);
if (mode == SaveFileMode.EXE) {
InputStream exeStream = View.class.getClassLoader().getResourceAsStream("com/jpexs/helpers/resource/Swf2Exe.bin");
- byte [] buffer = new byte[4096];
+ byte[] buffer = new byte[4096];
int bytesRead = 0;
- while((bytesRead = exeStream.read(buffer)) != -1) {
+ while ((bytesRead = exeStream.read(buffer)) != -1) {
fos.write(buffer, 0, bytesRead);
}
int width = swf.displayRect.Xmax - swf.displayRect.Xmin;
@@ -345,9 +345,9 @@ public class Main {
private static class OpenFileWorker extends SwingWorker {
private final SWFSourceInfo[] sourceInfos;
-
+
public OpenFileWorker(SWFSourceInfo sourceInfo) {
- this.sourceInfos = new SWFSourceInfo[] { sourceInfo };
+ this.sourceInfos = new SWFSourceInfo[]{sourceInfo};
}
public OpenFileWorker(SWFSourceInfo[] sourceInfos) {
@@ -468,9 +468,9 @@ public class Main {
}
public static OpenFileResult openFile(SWFSourceInfo sourceInfo) {
- return openFile(new SWFSourceInfo[] { sourceInfo });
+ return openFile(new SWFSourceInfo[]{sourceInfo});
}
-
+
public static OpenFileResult openFile(SWFSourceInfo[] newSourceInfos) {
if (mainFrame != null && !Configuration.openMultipleFiles.get()) {
sourceInfos.clear();
@@ -495,17 +495,17 @@ public class Main {
sourceInfos.addAll(Arrays.asList(newSourceInfos));
return OpenFileResult.OK;
}
-
+
public static void closeFile(SWFList swf) {
- sourceInfos.remove(swf.sourceInfo);
- mainFrame.getPanel().close(swf);
+ sourceInfos.remove(swf.sourceInfo);
+ mainFrame.getPanel().close(swf);
}
-
+
public static void closeAll() {
- sourceInfos.clear();
- mainFrame.getPanel().closeAll();
+ sourceInfos.clear();
+ mainFrame.getPanel().closeAll();
}
-
+
public static boolean saveFileDialog(SWF swf, final SaveFileMode mode) {
JFileChooser fc = new JFileChooser();
fc.setCurrentDirectory(new File(Configuration.lastSaveDir.get()));
@@ -589,8 +589,8 @@ public class Main {
JFileChooser fc = new JFileChooser();
fc.setCurrentDirectory(new File(Configuration.lastOpenDir.get()));
FileFilter allSupportedFilter = new FileFilter() {
- private final String[] supportedExtensions = new String[] { ".swf", ".gfx", ".swc", ".zip" };
-
+ private final String[] supportedExtensions = new String[]{".swf", ".gfx", ".swc", ".zip"};
+
@Override
public boolean accept(File f) {
String name = f.getName().toLowerCase();
@@ -621,7 +621,7 @@ public class Main {
}
};
fc.addChoosableFileFilter(swfFilter);
-
+
FileFilter swcFilter = new FileFilter() {
@Override
public boolean accept(File f) {
@@ -634,7 +634,7 @@ public class Main {
}
};
fc.addChoosableFileFilter(swcFilter);
-
+
FileFilter gfxFilter = new FileFilter() {
@Override
public boolean accept(File f) {
@@ -645,10 +645,9 @@ public class Main {
public String getDescription() {
return AppStrings.translate("filter.gfx");
}
- };
+ };
fc.addChoosableFileFilter(gfxFilter);
-
-
+
FileFilter zipFilter = new FileFilter() {
@Override
public boolean accept(File f) {
@@ -661,7 +660,7 @@ public class Main {
}
};
fc.addChoosableFileFilter(zipFilter);
-
+
FileFilter binaryFilter = new FileFilter() {
@Override
public boolean accept(File f) {
@@ -674,7 +673,7 @@ public class Main {
}
};
fc.addChoosableFileFilter(binaryFilter);
-
+
fc.setAcceptAllFileFilterUsed(false);
JFrame f = new JFrame();
View.setWindowIcon(f);
@@ -743,7 +742,7 @@ public class Main {
} catch (Throwable ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
-
+
UIManager.put("OptionPane.okButtonText", AppStrings.translate("button.ok"));
UIManager.put("OptionPane.yesButtonText", AppStrings.translate("button.yes"));
UIManager.put("OptionPane.noButtonText", AppStrings.translate("button.no"));
@@ -871,7 +870,7 @@ public class Main {
}
if (args.length == 0) {
- initGui();
+ initGui();
showModeFrame();
} else {
String fileToOpen = CommandLineArgumentParser.parseArguments(args);
@@ -926,7 +925,6 @@ public class Main {
trayIcon.setImageAutoSize(true);
PopupMenu trayPopup = new PopupMenu();
-
ActionListener trayListener = new ActionListener() {
/**
* Invoked when an action occurs.
@@ -945,7 +943,6 @@ public class Main {
}
};
-
MenuItem showMenuItem = new MenuItem(AppStrings.translate("proxy.show"));
showMenuItem.setActionCommand("SHOW");
showMenuItem.addActionListener(trayListener);
@@ -1102,10 +1099,10 @@ public class Main {
fileTxt.close();
logger.removeHandler(fileTxt);
}
-
+
String fileName;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-hh-mm-ss");
-
+
try {
fileName = Configuration.getFFDecHome() + File.separator + "logs" + File.separator;
if (Configuration.useDetailedLogging.get()) {
@@ -1122,13 +1119,12 @@ public class Main {
logger.log(Level.SEVERE, null, ex);
}
-
Formatter formatterTxt = new LogFormatter();
fileTxt.setFormatter(formatterTxt);
logger.addHandler(fileTxt);
ErrorLogFrame.getInstance().clearErrorState();
-
+
sdf = new SimpleDateFormat("yyyy-MM-dd");
logger.log(Level.INFO, "Date: {0}", sdf.format(new Date()));
logger.log(Level.INFO, ApplicationInfo.applicationVerName);
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrame.java b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrame.java
index 7c983ab75..a22940d33 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrame.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrame.java
@@ -21,10 +21,14 @@ package com.jpexs.decompiler.flash.gui;
* @author JPEXS
*/
public interface MainFrame {
-
+
public void setTitle(String string);
+
public String translate(String key);
+
public MainPanel getPanel();
+
public boolean isVisible();
+
public void setVisible(boolean b);
}
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassic.java b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassic.java
index 6be7ca1d6..ddbc641ad 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassic.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassic.java
@@ -35,7 +35,7 @@ public final class MainFrameClassic extends AppFrame implements MainFrame {
public MainPanel panel;
private MainFrameMenu mainMenu;
-
+
public MainFrameClassic() {
super();
@@ -128,9 +128,9 @@ public final class MainFrameClassic extends AppFrame implements MainFrame {
super.setVisible(b);
panel.setVisible(b);
}
-
+
@Override
public MainPanel getPanel() {
return panel;
}
- }
+}
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassicMenu.java b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassicMenu.java
index bf806aa5c..6cc47835c 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassicMenu.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/MainFrameClassicMenu.java
@@ -99,7 +99,7 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
private JMenuItem exportAllCommandButton;
private JMenuItem exportFlaCommandButton;
private JMenuItem exportSelectionCommandButton;
-
+
private JMenuItem reloadCommandButton;
private JMenuItem renameinvalidCommandButton;
private JMenuItem globalrenameCommandButton;
@@ -117,7 +117,7 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
public boolean isInternalFlashViewerSelected() {
return miInternalViewer.isSelected();
}
-
+
private String translate(String key) {
return mainFrame.translate(key);
}
@@ -176,8 +176,6 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
menuExportAll.setIcon(View.getIcon("export16"));
menuExportSel.setIcon(View.getIcon("exportsel16"));
-
-
menuFile.add(miOpen);
menuFile.add(miSave);
menuFile.add(miSaveAs);
@@ -212,7 +210,6 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
miRenameIdentifiers.setActionCommand(ACTION_RENAME_IDENTIFIERS);
miRenameIdentifiers.addActionListener(this);
-
menuDeobfuscation.add(miRenameOneIdentifier);
menuDeobfuscation.add(miRenameIdentifiers);
menuDeobfuscation.add(miDeobfuscation);
@@ -242,7 +239,6 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
miParallelSpeedUp.setActionCommand(ACTION_PARALLEL_SPEED_UP);
miParallelSpeedUp.addActionListener(this);
-
menuTools.add(miProxy);
menuTools.add(menuDeobfuscation);
@@ -286,7 +282,6 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
miAssociate.addActionListener(this);
miAssociate.setSelected(ContextMenuTools.isAddedToContextMenu());
-
JMenuItem miLanguage = new JMenuItem(translate("menu.settings.language"));
miLanguage.setActionCommand(ACTION_SET_LANGUAGE);
miLanguage.addActionListener(this);
@@ -325,7 +320,6 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
miHomepage.setIcon(View.getIcon("homepage16"));
miHomepage.addActionListener(this);
-
menuHelp.add(miCheckUpdates);
menuHelp.add(miHelpUs);
menuHelp.add(miHomepage);
@@ -333,34 +327,34 @@ public class MainFrameClassicMenu implements MainFrameMenu, ActionListener {
menuBar.add(menuHelp);
mainFrame.setJMenuBar(menuBar);
-
+
//if (hasAbc) {
menuTools.add(miGotoDocumentClass);
//}
}
-
+
@Override
public void updateComponets(SWF swf, ListJTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -48,9 +47,9 @@ public class DecimalTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -61,10 +60,9 @@ public class DecimalTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -76,9 +74,8 @@ public class DecimalTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -89,11 +86,9 @@ public class DecimalTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -106,8 +101,7 @@ public class DecimalTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -124,10 +118,8 @@ public class DecimalTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DoubleTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DoubleTableModel.java
index 50cc6117a..310ee46dc 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DoubleTableModel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DoubleTableModel.java
@@ -31,10 +31,9 @@ public class DoubleTableModel implements TableModel {
}
/**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -48,9 +47,9 @@ public class DoubleTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -61,10 +60,9 @@ public class DoubleTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -76,9 +74,8 @@ public class DoubleTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -89,11 +86,9 @@ public class DoubleTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -106,8 +101,7 @@ public class DoubleTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -126,10 +120,8 @@ public class DoubleTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/IntTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/IntTableModel.java
index 07856709e..cbdc6d854 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/IntTableModel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/IntTableModel.java
@@ -31,10 +31,9 @@ public class IntTableModel implements TableModel {
}
/**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -48,9 +47,9 @@ public class IntTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -61,10 +60,9 @@ public class IntTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -76,9 +74,8 @@ public class IntTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -89,11 +86,9 @@ public class IntTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -106,8 +101,7 @@ public class IntTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -124,10 +118,8 @@ public class IntTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/MultinameTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/MultinameTableModel.java
index a1d8d4a12..e87d8bd5f 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/MultinameTableModel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/MultinameTableModel.java
@@ -32,10 +32,9 @@ public class MultinameTableModel implements TableModel {
}
/**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -49,9 +48,9 @@ public class MultinameTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -62,10 +61,9 @@ public class MultinameTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -77,9 +75,8 @@ public class MultinameTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -90,11 +87,9 @@ public class MultinameTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -107,8 +102,7 @@ public class MultinameTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -155,10 +149,8 @@ public class MultinameTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceSetTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceSetTableModel.java
index aa6ad6860..35bbe175d 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceSetTableModel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceSetTableModel.java
@@ -31,10 +31,9 @@ public class NamespaceSetTableModel implements TableModel {
}
/**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -48,9 +47,9 @@ public class NamespaceSetTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -61,10 +60,9 @@ public class NamespaceSetTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -76,9 +74,8 @@ public class NamespaceSetTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -89,11 +86,9 @@ public class NamespaceSetTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -106,8 +101,7 @@ public class NamespaceSetTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -130,10 +124,8 @@ public class NamespaceSetTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceTableModel.java
index 9315bf786..89734272a 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceTableModel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceTableModel.java
@@ -31,10 +31,9 @@ public class NamespaceTableModel implements TableModel {
}
/**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -48,9 +47,9 @@ public class NamespaceTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -61,10 +60,9 @@ public class NamespaceTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -76,9 +74,8 @@ public class NamespaceTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -89,11 +86,9 @@ public class NamespaceTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -106,8 +101,7 @@ public class NamespaceTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -135,10 +129,8 @@ public class NamespaceTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/StringTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/StringTableModel.java
index 5103448fc..0dacf8e3b 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/StringTableModel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/StringTableModel.java
@@ -31,10 +31,9 @@ public class StringTableModel implements TableModel {
}
/**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -48,9 +47,9 @@ public class StringTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -61,10 +60,9 @@ public class StringTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -76,9 +74,8 @@ public class StringTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -89,11 +86,9 @@ public class StringTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -106,8 +101,7 @@ public class StringTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -124,10 +118,8 @@ public class StringTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/UIntTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/UIntTableModel.java
index 5350d474d..e28765faa 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/UIntTableModel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/UIntTableModel.java
@@ -31,10 +31,9 @@ public class UIntTableModel implements TableModel {
}
/**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it should
- * display. This method should be quick, as it is called frequently during
- * rendering.
+ * Returns the number of rows in the model. A JTable uses this
+ * method to determine how many rows it should display. This method should
+ * be quick, as it is called frequently during rendering.
*
* @return the number of rows in the model
* @see #getColumnCount
@@ -48,9 +47,9 @@ public class UIntTableModel implements TableModel {
}
/**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
+ * Returns the number of columns in the model. A JTable uses
+ * this method to determine how many columns it should create and display by
+ * default.
*
* @return the number of columns in the model
* @see #getRowCount
@@ -61,10 +60,9 @@ public class UIntTableModel implements TableModel {
}
/**
- * Returns the name of the column at
- * columnIndex. This is used to initialize the table's column
- * header name. Note: this name does not need to be unique; two columns in a
- * table can have the same name.
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does not
+ * need to be unique; two columns in a table can have the same name.
*
* @param columnIndex the index of the column
* @return the name of the column
@@ -76,9 +74,8 @@ public class UIntTableModel implements TableModel {
/**
* Returns the most specific superclass for all the cell values in the
- * column. This is used by the
- * JTable to set up a default renderer and editor for the
- * column.
+ * column. This is used by the JTable to set up a default
+ * renderer and editor for the column.
*
* @param columnIndex the index of the column
* @return the common ancestor class of the object values in the model.
@@ -89,11 +86,9 @@ public class UIntTableModel implements TableModel {
}
/**
- * Returns true if the cell at
- * rowIndex and
- * columnIndex is editable. Otherwise,
- * setValueAt on the cell will not change the value of that
- * cell.
+ * Returns true if the cell at rowIndex and
+ * columnIndex is editable. Otherwise, setValueAt
+ * on the cell will not change the value of that cell.
*
* @param rowIndex the row whose value to be queried
* @param columnIndex the column whose value to be queried
@@ -106,8 +101,7 @@ public class UIntTableModel implements TableModel {
}
/**
- * Returns the value for the cell at
- * columnIndex and
+ * Returns the value for the cell at columnIndex and
* rowIndex.
*
* @param rowIndex the row whose value is to be queried
@@ -124,10 +118,8 @@ public class UIntTableModel implements TableModel {
}
/**
- * Sets the value in the cell at
- * columnIndex and
- * rowIndex to
- * aValue.
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
*
* @param aValue the new value
* @param rowIndex the row whose value is to be changed
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/AS3PackageNode.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/AS3PackageNode.java
index 8a650a7e7..f23c1238c 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/AS3PackageNode.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/AS3PackageNode.java
@@ -23,7 +23,7 @@ import com.jpexs.decompiler.flash.treeitems.AS3PackageNodeItem;
* @author JPEXS
*/
public class AS3PackageNode extends TreeElement {
-
+
public AS3PackageNode(String name, String path, AS3PackageNodeItem item, TreeElement parent) {
super(name, path, item, parent);
}
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ClassesListNode.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ClassesListNode.java
index 7ab22e75d..f8ea60a15 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ClassesListNode.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ClassesListNode.java
@@ -24,7 +24,7 @@ import com.jpexs.decompiler.flash.treenodes.TreeNode;
* @author JPEXS
*/
public class ClassesListNode extends TreeNode {
-
+
public ClassesListNode(ClassesListTreeModel item) {
super(item);
}
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ScriptPackNode.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ScriptPackNode.java
index 42d27467b..4b2134c6c 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ScriptPackNode.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/treenodes/ScriptPackNode.java
@@ -23,7 +23,7 @@ import com.jpexs.decompiler.flash.abc.ScriptPack;
* @author JPEXS
*/
public class ScriptPackNode extends TreeElement {
-
+
public ScriptPackNode(String name, String path, ScriptPack item, TreeElement parent) {
super(name, path, item, parent);
}
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java b/trunk/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java
index b47426811..7960a1821 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java
@@ -121,7 +121,7 @@ public class ActionPanel extends JPanel implements ActionListener, SearchListene
public SearchPanelIf - * {@code false}, hides this {@code Window}, its subcomponents, and all of - * its owned children. The {@code Window} and its subcomponents can be made - * visible again with a call to {@code #setVisible(true)}. + * visible, this will bring the {@code Window} to the front.
+ * If {@code false}, hides this {@code Window}, its subcomponents, and all
+ * of its owned children. The {@code Window} and its subcomponents can be
+ * made visible again with a call to {@code #setVisible(true)}.
* @see java.awt.Component#isDisplayable
* @see java.awt.Component#setVisible
* @see java.awt.Window#toFront
diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/treenodes/SWFBundleNode.java b/trunk/src/com/jpexs/decompiler/flash/gui/treenodes/SWFBundleNode.java
index 0c5abf639..3aa8f93a8 100644
--- a/trunk/src/com/jpexs/decompiler/flash/gui/treenodes/SWFBundleNode.java
+++ b/trunk/src/com/jpexs/decompiler/flash/gui/treenodes/SWFBundleNode.java
@@ -14,7 +14,6 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see Returns the blending mode of this composite.
+ * Returns the blending mode of this composite. The difference between the Windows epoch (1601-01-01 00:00:00) and
+ *
+ * The difference between the Windows epoch (1601-01-01 00:00:00) and
* the Unix epoch (1970-01-01 00:00:00) in milliseconds:
* 11644473600000L. (Use your favorite spreadsheet program to verify the
* correctness of this value. By the way, did you notice that you can
@@ -211,12 +212,12 @@ public interface WinBase extends StdCallLibrary, WinDef, BaseTSD {
private static final long EPOCH_DIFF = 11644473600000L;
/**
- * Converts a Windows FILETIME into a {@link Date}. The Windows
- * FILETIME structure holds a date and time associated with a file. The
- * structure identifies a 64-bit integer specifying the number of
- * 100-nanosecond intervals which have passed since January 1, 1601.
- * This 64-bit value is split into the two double words stored in the
- * structure.
+ * Converts a Windows FILETIME into a {@link Date}. The Windows FILETIME
+ * structure holds a date and time associated with a file. The structure
+ * identifies a 64-bit integer specifying the number of 100-nanosecond
+ * intervals which have passed since January 1, 1601. This 64-bit value
+ * is split into the two double words stored in the structure. Converts a {@link Date} into a filetime.
+ * Converts a {@link Date} into a filetime.gdi32.dll.
+ * Definition (incomplete) of gdi32.dll.
*/
public interface Gdi32 extends StdCallLibrary {
@@ -317,4 +316,4 @@ public interface Gdi32 extends StdCallLibrary {
DWORD GetPixel(HDC hdc, int nXPos, int nYPos);
HANDLE CreateSolidBrush(DWORD crColor);
-}
\ No newline at end of file
+}
diff --git a/trunk/src/com/sun/jna/platform/win32/Kernel32.java b/trunk/src/com/sun/jna/platform/win32/Kernel32.java
index ee4337229..8fe3131c0 100644
--- a/trunk/src/com/sun/jna/platform/win32/Kernel32.java
+++ b/trunk/src/com/sun/jna/platform/win32/Kernel32.java
@@ -19,9 +19,8 @@ import com.sun.jna.win32.W32APIOptions;
// TODO: Auto-generated Javadoc
/**
- * Interface definitions for
- * kernel32.dll. Includes additional alternate mappings from
- * {@link WinNT} which make use of NIO buffers.
+ * Interface definitions for kernel32.dll. Includes additional
+ * alternate mappings from {@link WinNT} which make use of NIO buffers.
*/
public interface Kernel32 extends WinNT {
@@ -120,7 +119,7 @@ public interface Kernel32 extends WinNT {
public static final int PROCESS_MODE_BACKGROUND_BEGIN = 0x00100000;
public static final int PROCESS_MODE_BACKGROUND_END = 0x00200000;
public static final int REALTIME_PRIORITY_CLASS = 0x00000100;
-
+
// __out
// HANDLE
// WINAPI
@@ -184,7 +183,7 @@ public interface Kernel32 extends WinNT {
HANDLE GetCurrentProcess();
int SetProcessAffinityMask(HANDLE hProcess, int mask);
-
+
int SetPriorityClass(HANDLE hProcess, int dwPriorityClass);
/**
diff --git a/trunk/src/com/sun/jna/platform/win32/SHELLEXECUTEINFO.java b/trunk/src/com/sun/jna/platform/win32/SHELLEXECUTEINFO.java
index fa58929f8..2db28e4ec 100644
--- a/trunk/src/com/sun/jna/platform/win32/SHELLEXECUTEINFO.java
+++ b/trunk/src/com/sun/jna/platform/win32/SHELLEXECUTEINFO.java
@@ -33,4 +33,4 @@ public class SHELLEXECUTEINFO extends Structure {
return Arrays.asList(new String[]{"cbSize", "fMask", "hwnd", "lpVerb", "lpFile", "lpParameters", "lpDirectory", "nShow", "hInstApp", "lpIDList",
"lpClass", "hKeyClass", "dwHotKey", "hMonitor", "hProcess"});
}
-}
\ No newline at end of file
+}
diff --git a/trunk/src/com/sun/jna/platform/win32/User32.java b/trunk/src/com/sun/jna/platform/win32/User32.java
index 19f7fd66d..204965597 100644
--- a/trunk/src/com/sun/jna/platform/win32/User32.java
+++ b/trunk/src/com/sun/jna/platform/win32/User32.java
@@ -1515,4 +1515,4 @@ public interface User32 extends StdCallLibrary, WinUser {
public static final int DI_DEFAULTSIZE = 8;
int FillRect(HDC hDC, RECT lprc, HANDLE hbr);
-}
\ No newline at end of file
+}
diff --git a/trunk/src/com/sun/jna/platform/win32/WinBase.java b/trunk/src/com/sun/jna/platform/win32/WinBase.java
index 94708e69a..be280555c 100644
--- a/trunk/src/com/sun/jna/platform/win32/WinBase.java
+++ b/trunk/src/com/sun/jna/platform/win32/WinBase.java
@@ -34,9 +34,9 @@ public interface WinBase extends StdCallLibrary, WinDef, BaseTSD {
/**
* Constant value representing an invalid HANDLE.
*/
- HANDLE INVALID_HANDLE_VALUE =
- new HANDLE(Pointer.createConstant(Pointer.SIZE == 8
- ? -1 : 0xFFFFFFFFL));
+ HANDLE INVALID_HANDLE_VALUE
+ = new HANDLE(Pointer.createConstant(Pointer.SIZE == 8
+ ? -1 : 0xFFFFFFFFL));
/**
* Maximum computer name length. The value is 15 on Mac, 31 on everything
* else.
@@ -201,7 +201,8 @@ public interface WinBase extends StdCallLibrary, WinDef, BaseTSD {
read();
}
/**
- *