View Javadoc
1   package org.argeo.slc.client.ui.specific;
2   
3   import org.argeo.slc.client.rap.SlcRapPlugin;
4   
5   /**
6    * Workaround a single sourcing problem:
7    * 
8    * final static variable are imported at compilation time (we build against RCP)
9    * and we still must have a different ID (the prefix must be the PLUGIN ID) for
10   * RAP and RCP in order to be able to inject beans in the corresponding commands 
11   */
12  public class OpenJcrFileCmdId {
13  
14  	public String getCmdId() {
15  		return SlcRapPlugin.PLUGIN_ID + ".openJcrFile";
16  	}
17  }