Stream: social
Topic: logical models
Richard Kavanagh (Feb 18 2016 at 23:46):
Richard Kavanagh (Feb 18 2016 at 23:49):
(deleted)
Richard Kavanagh (Feb 18 2016 at 23:50):
public class PathConverter : IMultiValueConverter { public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture) { if (values[0] is ElementDefinition) { ElementDefinition data = values[0] as ElementDefinition; return data.LastPathPart(); } else { return ""; } } public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture) { throw new NotImplementedException(); } }
Grahame Grieve (Feb 18 2016 at 23:53):
looks good Richard
Richard Kavanagh (Feb 18 2016 at 23:55):
Yes - Nearly at the point where I can release it to folk for a bit of testing. Been an interesting exercise learning C# WPF.
Richard Kavanagh (Feb 18 2016 at 23:56):
Going to take a look at how to cater for "example values" along the lines of your extensions - in due course :-)
David Hay (Feb 19 2016 at 00:29):
Richard: If you're going down the line of creating examples, would be good to co-ordinate efforts...
Hussain Chinoy (Feb 19 2016 at 01:40):
Well, hey there.
Richard Kavanagh (Feb 24 2016 at 08:31):
@David Hay, currently the focus is creating a tool for creating Logical Models, though the tool's framework then potentially allows other "resources" to be created. I'm currently only concerned with Logical Models though as I see that as having real near term utility.
Koray Atalag (Feb 27 2016 at 22:33):
Hi Richard, is the tool targeted for technical or clinical users? Looks like a worthwhile effort - thx
Richard Kavanagh (Feb 29 2016 at 14:01):
Hi @Koray Atalag currently I dont have any real plans for the tool on either, I suspect that it could be used by any of those communities. The tool is more about the "art of the possible". Interestingly I am looking at being able to import" openEHR artefacts into the tool. I'll be strating wiht archetypes.
Last updated: Apr 12 2022 at 19:14 UTC