Dear List,
As far as I understood, interfaces are implemented with FAMiXClass
for which the isInterface field is set to true. Fine. But how do I
set the link "isImplementedBy:" from a class to an interface? Is this
by declaring a superclass? That would look odd..
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
now raise an error with the last version of Moose.
Is there any test that cover these methods? I am not sure whether I
am filling the moose model in a wrong way.
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi,
I am thinking of starting another effort in April to extend
moose.unibe.ch, and I am looking for 1-2 people interested in giving a
hand with it. It would involve coding in Squeak and with Pier.
Please let me know if you would be willing to help.
Here are some use cases:
- make publications update periodically from external urls
- generate news for the newer publications (like on the scg website)
- make the tool page a special structure that has explicit pointers to
publications, to contributors and to the license
- describe the tool as active/inactive and build a museum for the
inactive tools (Michele's suggestion)
- have the contributor be a special structure where we can derive a
default profile based
- query the VW Store database for project information, and then link
the information with the existing publications and contributors
- an upload interface for case studies
Cheers,
Doru
--
www.tudorgirba.comwww.tudorgirba.com/blog
"To lead is not to demand things, it is to make them happen."
Hi,
I just noticed that Mondrian Easel doesnÂ’t work with Mondrian.Utils
version 1.38 and later (no problem with the previous versions). I have an
exception when I click on “Open a Mondrian Easel”.
Apparently, the problem is in the method
Mondrian.SearchAwareMondrianEasel>>postBuildWith:
The variable EaselHighlightingController is not understood.
How can I fix the problem?
Hi,
Moose can now be loaded in 7.6. There were a couple of problems, but I
think I managed to find them all. Please try to load and let me know
if you encounter problems.
Here are the most important problems:
1. in 7.6 they changed a bit the code to obtain all versions from a
Pundle (Pundle class>>allVersionsWithName:), and it appears that we
have a problem with the CodeFoo bundle in the database. I believe this
is due to Adrian renaming CodeFoo packages into CodeFu. I solved this
temporarily by adding a hack package that overrides the mentioned
behavior.
2. BlockClosure>>cull: had a different implementation in 7.6 then in
CodeFoo so now I renamed it in CodeFoo to cullValue:
3. due to the changes in Refactoring Browser in 7.6 the browser
extensions use now a different mechanism so a couple of packages that
extended the browser had problems. For the moment I solved the problem
by just removing the behavior.
4. a series of external packages needed to be updated in Store to work
with 7.6.
Cheers,
Doru
--
www.tudorgirba.comwww.tudorgirba.com/blog
"From an abstract enough point of view, any two things are similar."
Are there any plans making Moose load in VisualWorks 7.6?
- The Setup package breaks the launcher and the code browser.
Unfortunately MooseSetup (1.6,girba) also loads the Setup package.
- Then I tried to manually load Moose Config (1.25,girba), what
doesn't seem to reach an end and just keeps on loading forever.
Now I am lost ;-)
Btw, ASBAqua and ASBLook (from public StORE) are really cool if you
are on a Mac. For the first time it doesn't hurt to look at the VW
user-interface.
Lukas
--
Lukas Renggli
http://www.lukas-renggli.ch
Thanks Alex!
I have a question: you parse the Java class until the method level, but
you do not parse what is inside the methods (method body), don't you?
I will send you a Java class to your private email account (just to not
pollute the mailing list) that can not be parsed, or at least I have the
following message:
"Token not expected in file c:\Documents and
Settings\garevalo\Escritorio\cliente3\cliente\Cliente.java"
Cheers,
Gabi
> ---------- Forwarded message ----------
> Date: Mon, 24 Mar 2008 17:23:30 -0400
> From: "Bergel, Alexandre" <bergel(a)iam.unibe.ch>
> Reply-To: Related to the development of Moose and other related tools
> <moose-dev(a)iam.unibe.ch>
> To: Related to the development of Moose and other related tools
> <moose-dev(a)iam.unibe.ch>
> Subject: [Moose-dev] Re: Importing JAva files into Moose
>
> Hola Gabriela!
>
> I recently worked on a Java importer for Moose. It works (for what I
> need it for :-)
> Look at the package JavaSupport4MOOSE on Store@SCG.
> You will have a new entry in the import button in the moose facade...
>
> Let me know, I provide free support :-)
> It does not import everything, but you should be able to have class
> inheritance and dependencies between classes. If you need other
> stuff, I can spend some time on this...
>
> Alexandre
>
>
> On 24 Mar 2008, at 17:16, Gabriela Arevalo wrote:
>
>> Hi guys,
>>
>> How do I import the Java Files into Moose?
>> I tried J2Moose, but the only info I get in the .mse file is the
>> following:
>>
>> (Moose.Model (entity
>>
>> ))
>>
>> I installed the J2Moose plugin into Eclipse and when I execute the
>> J2Moose>J2Moose, I do not get any information.
>>
>> CHeers,
>>
>> gabi
>> _______________________________________________
>> Moose-dev mailing list
>> Moose-dev(a)iam.unibe.ch
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
Dear all,
Anyone knows the magic invocation to extract the content of an easel?
Ideally, I would like to provide a script and to get a .jpg/png/
whatever.
I am not that fit with the VW GUI...
Thanks,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Dear list,
Mondrian is a great tool :-)
I have a question, how can I add a label under a box. I tried the
following script:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
view nodes: mooseModel allClasses forEach: [:each |
view newShape label text: #name.
view verticalLineLayout.
].
view edgesFrom: #superclass.
view treeLayout.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
But I still have unlabeled boxes...
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.