-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="src" output="target/classes" path="src/main/java">
- <attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="src" output="target/test-classes" path="src/test/java">
- <attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="output" path="target/classes"/>
-</classpath>
+<?xml version="1.0" encoding="UTF-8"?>\r
+<classpath>\r
+ <classpathentry kind="src" output="target/classes" path="src/main/java"/>\r
+ <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>\r
+ <classpathentry kind="src" output="target/test-classes" path="src/test/java"/>\r
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>\r
+ <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>\r
+ <classpathentry kind="output" path="target/classes"/>\r
+</classpath>\r
<!-- Checks that a package-info.java file exists for each package. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
- <module name="JavadocPackage"/>
+ <!-- <module name="JavadocPackage"/> -->
<!-- Checks whether files end with a new line. -->
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
<!-- Checks for Javadoc comments. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
+ <!--
<module name="JavadocMethod"/>
<module name="JavadocType"/>
<module name="JavadocVariable"/>
<module name="JavadocStyle"/>
-
+ -->
<!-- Checks for Naming Conventions. -->
<!-- See http://checkstyle.sf.net/config_naming.html -->
package org.vanbest.xmltv;
-/* TODO
- * Only partially implemented. Some fields are not implemented at all; some miss easy functions for adding;
+/* TODO
+ * Only partially implemented. Some fields are not implemented at all; some miss easy functions for adding;
* some aren't written to xmltv format
*/
import java.io.Serializable;
* The Class ProgrammeCache.
*/
public class ProgrammeCache {
-
+
/** The db. */
private Connection db;
-
+
/** The config. */
private Config config;
-
+
/** The get statement. */
private PreparedStatement getStatement;
-
+
/** The put statement. */
private PreparedStatement putStatement;
-
+
/** The remove statement. */
private PreparedStatement removeStatement;
-
+
/** The clear statement. */
private PreparedStatement clearStatement;
-
+
/** The clear source statement. */
private PreparedStatement clearSourceStatement;
/** The Constant SCHEMA_VERSION. */
private final static Integer SCHEMA_VERSION = 1;
-
+
/** The Constant SCHEMA_KEY. */
private final static String SCHEMA_KEY = "TV_GRAB_NL_JAVA_SCHEMA_VERSION";
/*
* (non-Javadoc)
- *
+ *
* @see org.vanbest.xmltv.EPGSource#getChannels()
*/
@Override
/*
* (non-Javadoc)
- *
+ *
* @see org.vanbest.xmltv.EPGSource#getProgrammes(java.util.List, int,
* boolean)
*/