|
|||||||||||||||||||
| This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| FeedParserI.java | - | - | - | - |
|
||||||||||||||
| 1 |
package net.sf.flock.parser; |
|
| 2 |
|
|
| 3 |
import net.sf.flock.FeedFactoryI; |
|
| 4 |
import net.sf.flock.FeedI; |
|
| 5 |
import net.sf.flock.FlockResourceException; |
|
| 6 |
import net.sf.flock.SubscriptionInfoI; |
|
| 7 |
|
|
| 8 |
import org.jdom.Document; |
|
| 9 |
|
|
| 10 |
interface FeedParserI {
|
|
| 11 |
|
|
| 12 |
public boolean isSuitable(Document doc); |
|
| 13 |
|
|
| 14 |
public FeedI parse(SubscriptionInfoI subscriptionInfoI, FeedFactoryI factory, Document doc) throws FlockResourceException; |
|
| 15 |
|
|
| 16 |
} |
|
| 17 |
|
|
||||||||||