|
From: Peter De B. (JIRA) <no...@at...> - 2005-10-06 12:36:08
|
Promote Settings Support from sandbox to src
--------------------------------------------
Key: RCP-222
URL: http://opensource.atlassian.com/projects/spring/browse/RCP-222
Project: Spring Framework Rich Client Project
Type: New Feature
Components: Helper Classes
Reporter: Peter De Bruycker
Assigned to: Oliver Hutchison
Promote settings and prefs support to src
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/spring/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|
|
From: Peter De B. (JIRA) <no...@at...> - 2005-10-10 07:05:02
|
[ http://opensource.atlassian.com/projects/spring/browse/RCP-222?page=all ] Peter De Bruycker updated RCP-222: ---------------------------------- Component: (was: Helper Classes) Settings/Preferences > Promote Settings Support from sandbox to src > -------------------------------------------- > > Key: RCP-222 > URL: http://opensource.atlassian.com/projects/spring/browse/RCP-222 > Project: Spring Framework Rich Client Project > Type: New Feature > Components: Settings/Preferences > Reporter: Peter De Bruycker > Assignee: Peter De Bruycker > > Promote settings and prefs support to src -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/spring/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Lieven D. (JIRA) <no...@sp...> - 2008-10-09 20:27:25
|
[ http://jira.springframework.org/browse/RCP-222?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Lieven Doclo updated RCP-222:
-----------------------------
Fix Version/s: 1.0.2
> Promote Settings Support from sandbox to src
> --------------------------------------------
>
> Key: RCP-222
> URL: http://jira.springframework.org/browse/RCP-222
> Project: Spring Framework Rich Client Project
> Issue Type: New Feature
> Components: Settings/Preferences
> Reporter: Peter De Bruycker
> Assignee: Peter De Bruycker
> Fix For: 1.0.2
>
>
> Promote settings and prefs support to src
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.springframework.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|
|
From: Andreas K. (JIRA) <no...@sp...> - 2008-11-27 15:35:19
|
[ http://jira.springframework.org/browse/RCP-222?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=41388#action_41388 ]
Andreas Kuhtz commented on RCP-222:
-----------------------------------
The TransientPreferences has a problem. The getSpi() should return null if the value is not available in the preferences. This allows to specify a default value that will be used.
{code:title=TransientPreferences.java}
protected String getSpi(String key) {
if (values.containsKey(key)) {
return (String) values.get(key);
}
//return ""; --> return null here to get the default value!!!!!
return null;
}
{code}
The get() of AbstractReferences returns the default value if getSpi() returns null.
{code:title=AbstractPreferences.java}
public String get(String key, String def) {
if (key==null)
throw new NullPointerException("Null key");
synchronized(lock) {
if (removed)
throw new IllegalStateException("Node has been removed.");
String result = null;
try {
result = getSpi(key);
} catch (Exception e) {
// Ignoring exception causes default to be returned
}
return (result==null ? def : result);
}
}
{code}
> Promote Settings Support from sandbox to src
> --------------------------------------------
>
> Key: RCP-222
> URL: http://jira.springframework.org/browse/RCP-222
> Project: Spring Rich Client Project
> Issue Type: New Feature
> Components: Core
> Reporter: Peter De Bruycker
> Assignee: Peter De Bruycker
> Fix For: 1.1.0
>
>
> Promote settings and prefs support to src
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.springframework.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|
|
From: Lieven D. (JIRA) <no...@sp...> - 2009-07-01 14:44:17
|
[ http://jira.springsource.org/browse/RCP-222?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Lieven Doclo updated RCP-222:
-----------------------------
Fix Version/s: (was: 1.1.0)
1.1.1
> Promote Settings Support from sandbox to src
> --------------------------------------------
>
> Key: RCP-222
> URL: http://jira.springsource.org/browse/RCP-222
> Project: Spring Rich Client Project
> Issue Type: New Feature
> Components: Core
> Reporter: Peter De Bruycker
> Assignee: Peter De Bruycker
> Fix For: 1.1.1
>
>
> Promote settings and prefs support to src
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.springsource.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|
|
From: Lieven D. (JIRA) <no...@sp...> - 2009-07-09 22:18:03
|
[ http://jira.springsource.org/browse/RCP-222?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Lieven Doclo updated RCP-222:
-----------------------------
Fix Version/s: (was: 1.1.1)
1.x
> Promote Settings Support from sandbox to src
> --------------------------------------------
>
> Key: RCP-222
> URL: http://jira.springsource.org/browse/RCP-222
> Project: Spring Rich Client Project
> Issue Type: New Feature
> Components: Core
> Reporter: Peter De Bruycker
> Assignee: Peter De Bruycker
> Fix For: 1.x
>
>
> Promote settings and prefs support to src
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.springsource.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|