~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/preferences/BazaarPreferenceConstants.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
package org.vcs.bazaar.eclipse.core.preferences;
 
2
 
 
3
/**
 
4
 * Constant definitions for plug-in preferences
 
5
 */
 
6
public class BazaarPreferenceConstants
 
7
{
 
8
  public static final String EXECUTABLE = "bzr";
 
9
  //username should be per project in the future, different repositories could have differernt names (sub optimal I know but it really could)
 
10
  public static final String USERNAME = System.getProperty ( "user.name" ) ;
 
11
  
 
12
}
 
13
 
 
14