Moved namespace classes
Deleted packages with only one class in it
This commit is contained in:
parent
705693ea0c
commit
09ae33ea90
|
@ -7,13 +7,13 @@ import org.xml.sax.helpers.DefaultHandler;
|
|||
import android.util.Log;
|
||||
import de.danoeh.antennapod.AppConfig;
|
||||
import de.danoeh.antennapod.feed.Feed;
|
||||
import de.danoeh.antennapod.syndication.namespace.NSContent;
|
||||
import de.danoeh.antennapod.syndication.namespace.NSITunes;
|
||||
import de.danoeh.antennapod.syndication.namespace.NSRSS20;
|
||||
import de.danoeh.antennapod.syndication.namespace.NSSimpleChapters;
|
||||
import de.danoeh.antennapod.syndication.namespace.Namespace;
|
||||
import de.danoeh.antennapod.syndication.namespace.SyndElement;
|
||||
import de.danoeh.antennapod.syndication.namespace.atom.NSAtom;
|
||||
import de.danoeh.antennapod.syndication.namespace.content.NSContent;
|
||||
import de.danoeh.antennapod.syndication.namespace.itunes.NSITunes;
|
||||
import de.danoeh.antennapod.syndication.namespace.rss20.NSRSS20;
|
||||
import de.danoeh.antennapod.syndication.namespace.simplechapters.NSSimpleChapters;
|
||||
|
||||
/** Superclass for all SAX Handlers which process Syndication formats */
|
||||
public class SyndHandler extends DefaultHandler {
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
package de.danoeh.antennapod.syndication.namespace.content;
|
||||
package de.danoeh.antennapod.syndication.namespace;
|
||||
|
||||
import org.xml.sax.Attributes;
|
||||
|
||||
import de.danoeh.antennapod.syndication.handler.HandlerState;
|
||||
import de.danoeh.antennapod.syndication.namespace.Namespace;
|
||||
import de.danoeh.antennapod.syndication.namespace.SyndElement;
|
||||
|
||||
public class NSContent extends Namespace {
|
||||
public static final String NSTAG = "content";
|
|
@ -1,11 +1,9 @@
|
|||
package de.danoeh.antennapod.syndication.namespace.itunes;
|
||||
package de.danoeh.antennapod.syndication.namespace;
|
||||
|
||||
import org.xml.sax.Attributes;
|
||||
|
||||
import de.danoeh.antennapod.feed.FeedImage;
|
||||
import de.danoeh.antennapod.syndication.handler.HandlerState;
|
||||
import de.danoeh.antennapod.syndication.namespace.Namespace;
|
||||
import de.danoeh.antennapod.syndication.namespace.SyndElement;
|
||||
|
||||
public class NSITunes extends Namespace{
|
||||
public static final String NSTAG = "itunes";
|
|
@ -1,4 +1,4 @@
|
|||
package de.danoeh.antennapod.syndication.namespace.rss20;
|
||||
package de.danoeh.antennapod.syndication.namespace;
|
||||
|
||||
import org.xml.sax.Attributes;
|
||||
|
||||
|
@ -8,8 +8,6 @@ import de.danoeh.antennapod.feed.FeedImage;
|
|||
import de.danoeh.antennapod.feed.FeedItem;
|
||||
import de.danoeh.antennapod.feed.FeedMedia;
|
||||
import de.danoeh.antennapod.syndication.handler.HandlerState;
|
||||
import de.danoeh.antennapod.syndication.namespace.Namespace;
|
||||
import de.danoeh.antennapod.syndication.namespace.SyndElement;
|
||||
import de.danoeh.antennapod.syndication.util.SyndDateUtils;
|
||||
import de.danoeh.antennapod.syndication.util.SyndTypeUtils;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package de.danoeh.antennapod.syndication.namespace.simplechapters;
|
||||
package de.danoeh.antennapod.syndication.namespace;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
@ -7,8 +7,6 @@ import org.xml.sax.Attributes;
|
|||
import de.danoeh.antennapod.feed.Chapter;
|
||||
import de.danoeh.antennapod.feed.SimpleChapter;
|
||||
import de.danoeh.antennapod.syndication.handler.HandlerState;
|
||||
import de.danoeh.antennapod.syndication.namespace.Namespace;
|
||||
import de.danoeh.antennapod.syndication.namespace.SyndElement;
|
||||
import de.danoeh.antennapod.syndication.util.SyndDateUtils;
|
||||
|
||||
public class NSSimpleChapters extends Namespace {
|
|
@ -6,9 +6,9 @@ import de.danoeh.antennapod.feed.FeedImage;
|
|||
import de.danoeh.antennapod.feed.FeedItem;
|
||||
import de.danoeh.antennapod.feed.FeedMedia;
|
||||
import de.danoeh.antennapod.syndication.handler.HandlerState;
|
||||
import de.danoeh.antennapod.syndication.namespace.NSRSS20;
|
||||
import de.danoeh.antennapod.syndication.namespace.Namespace;
|
||||
import de.danoeh.antennapod.syndication.namespace.SyndElement;
|
||||
import de.danoeh.antennapod.syndication.namespace.rss20.NSRSS20;
|
||||
import de.danoeh.antennapod.syndication.util.SyndDateUtils;
|
||||
import de.danoeh.antennapod.syndication.util.SyndTypeUtils;
|
||||
|
||||
|
|
Loading…
Reference in New Issue