-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
41 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
language: java | ||
jdk: | ||
- oraclejdk8 | ||
- openjdk11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
/** | ||
* Creates & keeps track of open pages. | ||
* | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public class DocumentManager { | ||
private static Map<File,List<Page>> pageMap = new HashMap<File,List<Page>>(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -326,7 +326,7 @@ public static void main(String[] args) { | |
* Actions & workers for the main PdfJumbler class. | ||
* Moved to an extra class for readability. | ||
* | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
class Actions { | ||
private static final ResourceBundle resources = ResourceBundle.getBundle(PdfJumblerResources.class.getCanonicalName()); | ||
|
@@ -886,7 +886,7 @@ public void actionPerformed(ActionEvent e) { | |
* (implemented as remove + add compound edits) and | ||
* is simpler than using insignificant edits. | ||
* | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
class UniqueUndoManager extends UndoManager { | ||
private static final long serialVersionUID = -2740016241678747836L; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
import net.sourceforge.pdfjumbler.pdf.PdfProcessingFactory; | ||
|
||
/** | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public class PdfList extends JDragDropList<Page> { | ||
private static final long serialVersionUID = 7475943073466784769L; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
import net.sourceforge.pdfjumbler.i18n.PdfJumblerResources; | ||
|
||
/** | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public class ProgressDialog extends JDialog { | ||
private static final long serialVersionUID = 5790932640733135316L; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
import net.sourceforge.pdfjumbler.pdf.Page; | ||
|
||
/** | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public class TrashDropTargetListener implements DropTargetListener { | ||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
import javax.swing.KeyStroke; | ||
|
||
/** | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public class PdfJumblerResources extends ListResourceBundle { | ||
@Override | ||
|
@@ -61,7 +61,7 @@ protected Object[][] getContents() { | |
}, | ||
{ | ||
"ABOUT_TEXT", | ||
"PdfJumbler %s \nCopyright (C) 2017 Martin Gropp\n" + | ||
"PdfJumbler %s \nCopyright (C) 2020 Martin Gropp\n" + | ||
"\n" + | ||
"PDF Editor: %s\n" + | ||
"PDF Renderer: %s\n" + | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
import javax.swing.KeyStroke; | ||
|
||
/** | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public class PdfJumblerResources_de extends ListResourceBundle { | ||
@Override | ||
|
@@ -59,7 +59,7 @@ protected Object[][] getContents() { | |
}, | ||
{ | ||
"ABOUT_TEXT", | ||
"PdfJumbler %s \nCopyright (C) 2017 Martin Gropp\n" + | ||
"PdfJumbler %s \nCopyright (C) 2020 Martin Gropp\n" + | ||
"\n" + | ||
"PDF Editor: %s\n" + | ||
"PDF Renderer: %s\n" + | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
import javax.swing.TransferHandler; | ||
|
||
/** | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public interface DropListener { | ||
/** | ||
|
3 changes: 3 additions & 0 deletions
3
src/main/java/net/sourceforge/pdfjumbler/pdf/PdfProcessorListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
src/main/java/net/sourceforge/pdfjumbler/pdf/PluginException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
/** | ||
* Methods to move & copy files. | ||
* | ||
* @author Martin Gropp <[email protected]> | ||
* @author Martin Gropp | ||
*/ | ||
public class FileUtils { | ||
public static void copyFile(File sourceFile, File destFile) throws IOException { | ||
|