Fwd: [Pharo-users] [ ANN ] Pharo Days 2016
by Tudor Girba
> Begin forwarded message:
>
> From: Sven Van Caekenberghe <sven(a)stfx.eu>
> Subject: [Pharo-users] [ ANN ] Pharo Days 2016
> Date: December 9, 2015 at 9:52:09 AM EST
> To: Any question about pharo is welcome <pharo-users(a)lists.pharo.org>, Pharo Development List <pharo-dev(a)lists.pharo.org>, Pharo Business <pharo-business(a)lists.pharo.org>
> Reply-To: Any question about pharo is welcome <pharo-users(a)lists.pharo.org>
>
> Dear fellow Pharoers,
>
> Mark your calendars: on Thursday March 31 & Friday April 1 we are organising the Pharo Days 2016. This year we moved the location to Namur, Belgium, just a bit south of Brussels, at the very beautiful location of the ‘Cercle de Wallonie’ overlooking the river Meuse.
>
> We’ll update the following page moving forward.
>
> https://medium.com/concerning-pharo/pharo-days-2016-c52fe4d7caf
>
> You can ask questions on any of the Pharo mailing lists or you can email the Pharo Board.
>
> Let's make this another success, together ! We hope to see as many of you as possible.
>
>
--
www.tudorgirba.com
"We are all great at making mistakes."
2 months, 3 weeks
MSE interchange of custom properties
by Peter Uhnak
Hi,
is it possible to interchange custom properties via MSE?
e.g.
I have added myProp to the method:
~~~~
(
(FAMIX.Class
(id: 1)
(name 'MyClass'))
(FAMIX.Method
(id: 2)
(name 'myMethod')
(myProp 'someValue')
(parentType (ref: 1))))
~~~
This is imported fine
~~~
s := Clipboard clipboardText asString.
model := MooseModel importFromMSEStream: s readStream.
model allMethods first propertyNamed: 'myProp'. "'someValue'"
~~~
However
1) I cannot see it in the Properties tab of the Moose Inspector,
2) when I export it, it is lost
(instead some other properties are exported that I didn't ask for)
~~~
model asMSEString. "'(
(FAMIX.Class (id: 1)
(name ''MyClass''))
(FAMIX.Method (id: 2)
(name ''myMethod'')
(cyclomaticComplexity -1)
(numberOfConditionals -1)
(numberOfLinesOfCode -1)
(numberOfStatements -1)
(parentType (ref: 1))
(timeStamp '''')))'"
~~~
The same thing applies when I add custom Metanool annotation in the Meta
edit tab... e.g. I add `an AnonymousClass[String]` with name `anotherProp`
and some value, I can actually see it in the `Properties` tab (unlike the
one imported),
but when exported, it is also missing.
Do I need to do some extra steps in order to interchange this information?
Thanks,
Peter
4 years, 10 months
moose model extension
by Hayatou Oumarou
Hello,How can I extend Moose metamodel to add new metrics at methods, classes and packages levels and how to compute its then show it in the navigation.thank you
------------------------------------
Hayatou Oumarou, PhD Software EngineeringUniversity of Maroua, Cameroon
(+237)699470504
4 years, 10 months