This file contains hidden or 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
public class AdobeReaderPrinting { | |
public static void main(final String[] args) { | |
final File file = new File("src/test/resources/tests/Sample_Printing.pdf"); | |
final Runtime r = Runtime.getRuntime(); | |
Process p = null; | |
try { | |
// Information about command line printing flags can be foud at http://livedocs.adobe.com/acrobat_sdk/10/Acrobat10_HTMLHelp/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Acrobat10_SDK_HTMLHelp&file=DevFAQ_UnderstandingSDK.22.31.html | |
final String printing = | |
"C:\\Program Files (x86)\\Adobe\\Reader 10.0\\Reader\\AcroRd32.exe /s /h /t " + file.getCanonicalPath() |
This file contains hidden or 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
public class PdfRendererPrinting { | |
public static void main(final String[] args) { | |
PrintingHelper.lookupAllPrinters(); | |
final PrintService[] printers = PrintingHelper.findPrinterOutputLocation("\\\\My_Remote_Or_Locally_Installed_Printer"); | |
if (0 == printers.length || 1 < printers.length) { | |
// Handle | |
} | |
final PrintService printService = printers[0]; | |
PrintingHelper.listsPrinterAttributes(printService); |
This file contains hidden or 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
public class JPdfPrinting { | |
public static void main(final String[] args) { | |
PrintingHelper.lookupAllPrinters(); | |
final PrintService[] printers = PrintingHelper.findPrinterOutputLocation("\\\\My_Remote_Or_Locally_Installed_Printer"); | |
if (0 == printers.length || 1 < printers.length) { | |
// Handle | |
} | |
final PrintService printService = printers[0]; | |
PrintingHelper.listsPrinterAttributes(printService); |
This file contains hidden or 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
public class IcePdfPrinting { | |
public static void main(final String[] args) { | |
PrintingHelper.lookupAllPrinters(); | |
final PrintService[] printers = PrintingHelper.findPrinterOutputLocation("\\\\My_Remote_Or_Locally_Installed_Printer"); | |
if (0 == printers.length || 1 < printers.length) { | |
// Handle | |
} | |
final PrintService printService = printers[0]; | |
PrintingHelper.listsPrinterAttributes(printService); |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
xsi:schemaLocation=" | |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd | |
"> | |
<import resource="classpath:/spring/spring-defaultConfiguration.xml" /> |
This file contains hidden or 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
@Component | |
public class AutowiredPropertyBean { | |
private String notAnnotated = "Original value"; | |
@ReloadableProperty("not.in.the.file") | |
private String withDefaultValue = "Default Value"; | |
@ReloadableProperty("not.in.the.file") | |
private int primitiveWithDefaultValue = 55; |
This file contains hidden or 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
dynamicProperty.longValue=12345 | |
dynamicProperty.substitutionProperty=${dynamicProperty.substitutionValue} | |
dynamicProperty.doubleValue=12345.67 | |
dynamicProperty.localTimeValue=12:22:45 | |
dynamicProperty.stringValue=Injected String Value | |
dynamicProperty.substitutionValue=elephant | |
dynamicProperty.bigDecimalValue=20012.56 | |
dynamicProperty.intValue=42 | |
dynamicProperty.localDateValue=2009-06-12 | |
dynamicProperty.periodValue=00:12:22 |
This file contains hidden or 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
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-enforcer-plugin</artifactId> | |
<version>1.0.1</version> | |
<executions> | |
<execution> | |
<id>enforce-versions</id> | |
<goals> | |
<goal>enforce</goal> |
This file contains hidden or 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
/** Allows import of other files e.g. const GitHub=imports.github; = github.js */ | |
imports.searchPath.push(imports.ui.appletManager.appletMeta["[email protected]"].path); | |
/** Imports START **/ | |
const Mainloop = imports.mainloop; | |
const Lang = imports.lang; | |
const Gettext = imports.gettext.domain('cinnamon-applets'); | |
const _ = Gettext.gettext; | |
const Cinnamon = imports.gi.Cinnamon; | |
const St = imports.gi.St; |
This file contains hidden or 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
export class CompetitionsService { | |
/** Create a EventEmitter - constructing with true to make async */ | |
onCompetitionsChanged = new EventEmitter<>(true); | |
constructor(private _http:Http) { | |
_http.get('competitions.json') | |
.subscribe( | |
data => { | |
//Broadcast the event to anyone who is listening |