Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [platform-vcm-dev] The WVCM API


Geoff,

We may be able to help out. This doesn't represent a commitment for including the WVCM
in the next release of Eclipse, but instead we would like to evaluate it.To get started, I have
a few questions.

1. Our experience has shown that methods that can be long running (e.g. the doXXX methods)
must provide the implementer the ability to report progress and allow the caller to cancel. Is there
a reason for not including this in the API?

2. The API is very rich mainly because it has to supports implementations that are non-versioning, support basic versioning,
or advanced versioning. That is good because we want to support a wide range of implementations. However for
us to motivate people to implement this API it shouldn't be too complicated. Ideally it should be fairly obvious what
classes/methods must be implemented based on the desired support they want to provide. It currently seems hard
to understand this.

Comments:

1. Code example in the Resource class seems wrong:

Resource myResource = myProvider.resource("/my/resource/loc").doReadProperties(wantComment);
=> should read
Resource myResource = myProvider.location("/my/resource/loc").resource().doReadProperties(wantComment);

2. A small nitpick thanks to Eclipse warnings:
VersionHistory has an unused import java.io.OutputStream,
ProviderFactory has an unused import java.lang.refrelct.Constructor,
Provider has an unused import java.io.OutputStream

Cheers,
Jean-Michel




"Clemm, Geoff" <gclemm@xxxxxxxxxxxx>
Sent by: platform-vcm-dev-admin@xxxxxxxxxxx

04/21/2003 12:41 PM
Please respond to platform-vcm-dev

       
        To:        "'platform-vcm-dev@xxxxxxxxxxx'" <platform-vcm-dev@xxxxxxxxxxx>
        cc:        
        Subject:        RE: [platform-vcm-dev] The WVCM API



The only thing holding up the RI and TCK is getting someone to volunteer to
do the work (:-).

So there are two chunks of work that could reasonably be done by Eclipse to
"kickstart" the WVCM adoption process (i.e. to motivate vendors to implement
the API):

- implement an Eclipse Team Provider Plug-in based on the WVCM API
- implement the WVCM API on some freely available CM system (e.g. CVS).

The second chunk of work could then serve as a reasonable RI.
And if some automated tests have been developed for the second chunk of
work, that could serve as the basis for the TCK.

Cheers,
Geoff



Back to the top