| author | Rainer Pielmann | 2012-09-25 07:34:34 (EDT) |
|---|---|---|
| committer | Stephan Born | 2012-09-25 07:34:34 (EDT) |
| commit | 38c1cdc951cc40cdd5e961cc5c099e9c44de701c (patch) (side-by-side diff) | |
| tree | 1f60ee8e7b8bd7ac89642dd53065ea53c52fc7ac | |
| parent | afc9460a18b2ddafce2222c9d0ee74c163f13d15 (diff) | |
| download | org.eclipse.stardust.ide.simulation-38c1cdc951cc40cdd5e961cc5c099e9c44de701c.zip org.eclipse.stardust.ide.simulation-38c1cdc951cc40cdd5e961cc5c099e9c44de701c.tar.gz org.eclipse.stardust.ide.simulation-38c1cdc951cc40cdd5e961cc5c099e9c44de701c.tar.bz2 | |
Jira-ID: CRNT-26284
Make sure that new i18n Properties are present in 7.1
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ide.simulation@59476 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | org.eclipse.stardust.ide.simulation.rt/src/org/eclipse/stardust/ide/simulation/rt/output/beans/SimulatedPiBean.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.stardust.ide.simulation.rt/src/org/eclipse/stardust/ide/simulation/rt/output/beans/SimulatedPiBean.java b/org.eclipse.stardust.ide.simulation.rt/src/org/eclipse/stardust/ide/simulation/rt/output/beans/SimulatedPiBean.java index b811212..a962eee 100644 --- a/org.eclipse.stardust.ide.simulation.rt/src/org/eclipse/stardust/ide/simulation/rt/output/beans/SimulatedPiBean.java +++ b/org.eclipse.stardust.ide.simulation.rt/src/org/eclipse/stardust/ide/simulation/rt/output/beans/SimulatedPiBean.java @@ -146,7 +146,7 @@ public class SimulatedPiBean extends AttributedIdentifiablePersistentBean private static final String startingActivityInstance_EAGER_FETCH = Boolean.FALSE.toString(); private static final String startingActivityInstance_MANDATORY = Boolean.FALSE.toString(); - private static final String AUDIT_TRAIL_PERSISTENCE_PROPERTY_KEY = "Infinity.Engine.AuditTrailPersistence"; + private static final String AUDIT_TRAIL_PERSISTENCE_PROPERTY_KEY = "Infinity.Engine.AuditTrailPersistence"; //$NON-NLS-1$ /** * @deprecated This attribute will not be maintained starting with version 3.2.1. @@ -1513,7 +1513,7 @@ public class SimulatedPiBean extends AttributedIdentifiablePersistentBean } else { - throw new IllegalStateException("Value '" + globalSetting + "' is not an override for property '" + KernelTweakingProperties.SUPPORT_TRANSIENT_PROCESSES + "'."); + throw new IllegalStateException("Value '" + globalSetting + "' is not an override for property '" + KernelTweakingProperties.SUPPORT_TRANSIENT_PROCESSES + "'."); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ } } @@ -1532,19 +1532,19 @@ public class SimulatedPiBean extends AttributedIdentifiablePersistentBean { if (newValue == null) { - throw new NullPointerException("Audit Trail Persistence must not be null."); + throw new NullPointerException("Audit Trail Persistence must not be null."); //$NON-NLS-1$ } final boolean isGlobalOverride = isGlobalAuditTrailPersistenceOverride(); if (isGlobalOverride) { - trace.warn("Changing process instance bound Audit Trail Persistence to '" + newValue + "' although a global override is set. (OID: " + oid + ")."); + trace.warn("Changing process instance bound Audit Trail Persistence to '" + newValue + "' although a global override is set. (OID: " + oid + ")."); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ } final AuditTrailPersistence oldValue = (AuditTrailPersistence) getPropertyValue(AUDIT_TRAIL_PERSISTENCE_PROPERTY_KEY); if (oldValue != null && !isGlobalOverride) { - trace.warn("Changing Audit Trail Persistence from '" + oldValue + "' to '" + newValue + "' (OID: " + oid + ")."); + trace.warn("Changing Audit Trail Persistence from '" + oldValue + "' to '" + newValue + "' (OID: " + oid + ")."); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ } setPropertyValue(AUDIT_TRAIL_PERSISTENCE_PROPERTY_KEY, newValue); |

