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
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-javadoc-plugin</artifactId> | |
| <version>2.7</version> | |
| <configuration> | |
| <doclet>com.lunatech.doclets.jax.jaxb.JAXBDoclet</doclet> | |
| <docletArtifacts> | |
| <docletArtifact> | |
| <groupId>com.lunatech.jax-doclets</groupId> | |
| <artifactId>doclets</artifactId> |
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
| package com.mtgox.api; | |
| import java.net.HttpURLConnection; | |
| import java.net.URL; | |
| import java.net.URLEncoder; | |
| import java.util.HashMap; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| import javax.crypto.Mac; |
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"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.sarxos</groupId> | |
| <artifactId>sarxos-soft-rpms</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <packaging>rpm</packaging> | |
| <name>Sarxos Soft</name> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
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
| import com.xuggle.mediatool.IMediaListener; | |
| import com.xuggle.mediatool.IMediaReader; | |
| import com.xuggle.mediatool.IMediaWriter; | |
| import com.xuggle.mediatool.MediaListenerAdapter; | |
| import com.xuggle.mediatool.ToolFactory; | |
| import com.xuggle.mediatool.event.IVideoPictureEvent; | |
| import com.xuggle.xuggler.IError; | |
| import com.xuggle.xuggler.demos.VideoImage; | |
| import java.awt.image.BufferedImage; |
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>eu.somatik.serviceloader-maven-plugin</groupId> | |
| <artifactId>serviceloader-maven-plugin</artifactId> | |
| <version>1.0.2</version> | |
| <configuration> | |
| <services> | |
| <service>foo.bar.service.ServiceInterface</service> | |
| </services> | |
| </configuration> |
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
| ${imp:import(org.slf4j.Logger,org.slf4j.LoggerFactory)} | |
| /** | |
| * I'm the logger. | |
| */ | |
| private static final Logger LOG = LoggerFactory.getLogger(${enclosing_type}.class);${cursor} |
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
| package com.fasterxml.jackson.core.type; | |
| import java.lang.reflect.ParameterizedType; | |
| import java.lang.reflect.Type; | |
| /** | |
| * This generic abstract class is used for obtaining full generics type information | |
| * by sub-classing; it must be converted to {@link ResolvedType} implementation | |
| * (implemented by <code>JavaType</code> from "databind" bundle) to be used. | |
| * Class is based on ideas from |
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
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; | |
| import java.text.DateFormat; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Calendar; | |
| import java.util.TimerTask; |
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
| void actionPerformed(..) { | |
| Thread t = new Thread(new Runnable() { | |
| public void run() { | |
| // capture qr, this will not block because it's in thread, | |
| // do all long running/blocking operations here, in this | |
| // thread | |
| final String qr = captureQrCode(); | |
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"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <parent> | |
| <groupId>io.plan.bofime</groupId> | |
| <artifactId>swim-common-parent</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| </parent> |
OlderNewer