~piastucki/bzr-eclipse/history-view-enhancements

« back to all changes in this revision

Viewing changes to org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/Diff.java

  • Committer: Guillermo Gonzalez
  • Date: 2007-03-14 12:15:50 UTC
  • Revision ID: guillo.gonzo@gmail.com-20070314121550-tltk3b6f3zblf0dh
Initial commit with the new code layout.
Now starts the real work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * 24/02/2007
 
3
 */
 
4
package org.vcs.bazaar.eclipse.core.commands;
 
5
 
 
6
import org.vcs.bazaar.eclipse.core.BazaarException;
 
7
import org.vcs.bazaar.eclipse.core.Command;
 
8
 
 
9
/**
 
10
 * @author Guillermo Gonzalez <guillo.gonzo@gmail.com>
 
11
 *
 
12
 * TODO: implement
 
13
 */
 
14
public class Diff extends Command {
 
15
 
 
16
        private final static String COMMAND = "diff"; 
 
17
 
 
18
        @Override
 
19
        public String execute() throws BazaarException {
 
20
                // TODO Auto-generated method stub
 
21
                return null;
 
22
        }
 
23
 
 
24
        @Override
 
25
        protected LocalOption[] getLocalOptions() {
 
26
                // TODO Auto-generated method stub
 
27
                return null;
 
28
        }
 
29
 
 
30
        @Override
 
31
        protected String getCommandName() {
 
32
                return COMMAND;
 
33
        }
 
34
 
 
35
}