how to use the bzr-java-lib BazaarClient class
I'm trying to write java code which works with our bzr repository, I am just checking out and building stuff from it. How do I implement a BazaarClientImp
I've created a
public class BazaarClientImpl extends BazaarClient
but there are now about 30 methods I need to implement and I do not know how?
I also cannot figure out how to implement the BazaarClientFactory
Question information
- Language:
- English Edit question
- Status:
- Solved
- Assignee:
- No assignee Edit question
- Solved by:
- Adrian Wilkins
- Solved:
- 2009-08-13
- Last query:
- 2009-08-13
- Last reply:
- 2009-08-07
You don't need to implement BazaarClient ; there are two implementations provided. Use BazaarClientFactory to create an instance of a BazaarClient.
If you aren't doing anything heavy, the command-line client is probably the easiest choice as it has the fewest dependencies.
Example :
BazaarClientPre
BazaarClientFac
IBazaarClient client = BazaarClientFac
Jesse Greenslade (bboyjesse) said : | #2 |
Thanks for quick response, I think that is what I was looking for. Does this library have documentation somewhere?
Jesse Greenslade (bboyjesse) said : | #3 |
Thanks Adrian Wilkins, that solved my question.