]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.client.rcp/src/org/argeo/slc/client/ui/specific/OpenJcrFileCmdId.java
Merge branch 'master' of https://github.com/argeo/argeo-slc.git
[gpl/argeo-slc.git] / org.argeo.slc.client.rcp / src / org / argeo / slc / client / ui / specific / OpenJcrFileCmdId.java
1 package org.argeo.slc.client.ui.specific;
2
3 import org.argeo.slc.client.rcp.SlcRcpPlugin;
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 SlcRcpPlugin.PLUGIN_ID + ".openJcrFile";
16 }
17 }