Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » Epsilon » [EUGENIA]Create node for abstract class and how change node figure and diagram figure ???
[EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485178] Thu, 10 September 2009 17:47 Go to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hello world

is the first time you use this forum.

with eugenia there is a way to create the node of an abstract class?
eg

@ gmf.node (figure = "rectangle", label = "name")
abstract class Architecture extends Property...

I can not created node.
Is there a way to do it?
I tried with the phantom node but do not get what I want.

other problem are these:
How do I assign a new image to a node in the palette?
For example, instead of "little stars" I insert other colorful images as a gear or another symbol.


Another problem I have is this. how can I use a figure that is not a rectangle, a rhombus, an ellipse, etc.
I wish I could draw the elements of my model with figures which I have already realized ...


I tried to follow these examples, but are not very clear.

http://sourceforge.net/apps/mediawiki/epsilonlabs/index.php? title=EuGENia

http://sourceforge.net/apps/mediawiki/epsilonlabs/index.php? title=Nodes_with_user_defined_images_at_runtime

Can someone explain better how to follow?
or whether alternatives

thanks

greetings marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485239 is a reply to message #485178] Thu, 10 September 2009 21:18 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

Please see comments below

marco wrote:
> hello world
>
> is the first time you use this forum.
>
> with eugenia there is a way to create the node of an abstract class?
> eg
>
> @ gmf.node (figure = "rectangle", label = "name")
> abstract class Architecture extends Property...
>
> I can not created node.
> Is there a way to do it?
> I tried with the phantom node but do not get what I want.

Why would you need to define a node for a class that you cannot
instantiate (since it is abstract)?
>
> other problem are these:
> How do I assign a new image to a node in the palette?
> For example, instead of "little stars" I insert other colorful images as
> a gear or another symbol.

You need to replace the default icons under icons/full/obj16 in your
xxx.edit plugin with your custom icons.
>
>
> Another problem I have is this. how can I use a figure that is not a
> rectangle, a rhombus, an ellipse, etc.
> I wish I could draw the elements of my model with figures which I have
> already realized ...

Instead of figure="rectangle" you should specify your custom figure
class e.g. figure="org.xyz.MyFigure" (don't forget to add the plugin in
which your figure is defined to the dependencies of the xxx.diagram plugin)

See
http://eclipse.org/gmt/epsilon/examples/index.php?example=or g.eclipse.epsilon.eugenia.examples.flowchart
for an example and
http://epsilonblog.wordpress.com/2009/06/15/eugenia-polishin g-your-gmf-editor/
for a discussion on the polishing features which you may find useful

>
>
> I tried to follow these examples, but are not very clear.
>
> http://sourceforge.net/apps/mediawiki/epsilonlabs/index.php? title=EuGENia
>
> http://sourceforge.net/apps/mediawiki/epsilonlabs/index.php? title=Nodes_with_user_defined_images_at_runtime
>
>
> Can someone explain better how to follow?
> or whether alternatives
>
> thanks
>
> greetings marco

Cheers,
Dimitris
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485429 is a reply to message #485239] Fri, 11 September 2009 17:24 Go to previous messageGo to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hello dimitris

thanks for the advice.

following what you told me I could put a new image on the nodes in the palette.


I have this problem. When I create a new figure that has a compartment.

if I create a new position within the compartment is not seen because it is covered from the figure that contains it.
I used the Java class DiamondFigure ... How do I change it so that it becomes transparent SIA is therefore possible to see the figures to create in it?


I also have a problem with the class the following link:

@gmf.link(source="from",target="to")
abstract class Link extends PropertyHolderElement, TypedElement {
attr LinkNavigability navigability;
ref ConnectableElement[1] from;
ref ConnectableElement[1] to;
ref Component fromContext;
ref Component toContext;
}


I wish that I automatically are assigned the values of the 4 elements from, to, fromContext, toContext.

for example if I create a component A with a connectable element in G and another element and component C with a connectable element within c.

If I create a link between A and C I want to have links in the properties of the following values:
from = b
to = c
fromContext = A
toContext = B

I adds a another source and Defining the destination of the link?
Could you tell me if there's a way what is?



Is there some manual Eugenia?
I'm doing a thesis and I realize this editor but I'm finding very little difficulty because the material available.

thank you very much

marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485439 is a reply to message #485429] Fri, 11 September 2009 17:50 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

marco wrote:
> hello dimitris
>
> thanks for the advice.
>
> following what you told me I could put a new image on the nodes in the
> palette.

Glad this helped!

>
>
> I have this problem. When I create a new figure that has a compartment.
>
> if I create a new position within the compartment is not seen because it
> is covered from the figure that contains it.
> I used the Java class DiamondFigure ... How do I change it so that it
> becomes transparent SIA is therefore possible to see the figures to
> create in it?
>

To make the diamond transparent you can remove/comment out the following
line from DiamondFigure

// Fill the shape
graphics.fillPolygon(pointList);

>
> I also have a problem with the class the following link:
>
> @gmf.link(source="from",target="to")
> abstract class Link extends PropertyHolderElement, TypedElement {
> attr LinkNavigability navigability;
> ref ConnectableElement[1] from;
> ref ConnectableElement[1] to;
> ref Component fromContext;
> ref Component toContext;
> }
>
>
> I wish that I automatically are assigned the values of the 4 elements
> from, to, fromContext, toContext.
>
> for example if I create a component A with a connectable element in G
> and another element and component C with a connectable element within c.
>
> If I create a link between A and C I want to have links in the
> properties of the following values:
> from = b
> to = c
> fromContext = A
> toContext = B
>
> I adds a another source and Defining the destination of the link?
> Could you tell me if there's a way what is?
>

There isn't anything built-in that supports this. However, this might be
possible by modifying the generated source code. I'd suggest you post a
question on this to the eclipse.modeling.gmf newsgroup.

>
>
> Is there some manual Eugenia?
> I'm doing a thesis and I realize this editor but I'm finding very little
> difficulty because the material available.

All the available material is available in
http://www.eclipse.org/gmt/epsilon/doc/eugenia/ (see the resources links
at the bottom of the page).

As stated in the description of the tool, EuGENia is a front-end that
simplifies the development of GMF editors. As such, its documentation
only covers its own features and not all the features of GMF/GEF (e.g.
drawing transparent figures is a GEF issue).

>
> thank you very much
>
> marco

Cheers,
Dimitris
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485487 is a reply to message #485439] Fri, 11 September 2009 23:55 Go to previous messageGo to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hi Dimitris
I have remove following line from DiamondFigure but i don't resolve my problem...

have you other solution?

thanks

marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485527 is a reply to message #485487] Sat, 12 September 2009 14:44 Go to previous messageGo to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
Az2004.hotmail.it wrote on Fri, 11 September 2009 19:55
hi Dimitris
I have remove following line from DiamondFigure but i don't resolve my problem...

have you other solution?

thanks

marco


I discovered a new problem with the figures that I created.

If the applications to a class that è@gmf.affixed me problems viewing ...

tells me that the item can not be created ...

Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485529 is a reply to message #485527] Sat, 12 September 2009 15:30 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

Please see comments below

marco wrote:
> Az2004.hotmail.it wrote on Fri, 11 September 2009 19:55
>> hi Dimitris
>> I have remove following line from DiamondFigure but i don't resolve
>> my problem...
>>
>> have you other solution?
>>
>> thanks
>>
>> marco

I'm not sure I understand the exact nature of the problem. Could you
please send me the code (in my email address - not here) and the steps I
need to go through to reproduce it?

>
>
> I discovered a new problem with the figures that I created.
>
> If the applications to a class that è@gmf.affixed me problems viewing ...
>
> tells me that the item can not be created ...

I'm afraid I don't understand this question. Perhaps seeing the code
will help.

>
>

Cheers,
Dimitris
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485532 is a reply to message #485529] Sat, 12 September 2009 15:51 Go to previous messageGo to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
ok i don't see your email...please can you send me email on az2004@hotmail.it

thanks
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485671 is a reply to message #485532] Mon, 14 September 2009 12:40 Go to previous messageGo to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
ok i don't see your email...
I can not send private messages

please can you send me email on az2004@hotmail.it


thanks
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485673 is a reply to message #485671] Mon, 14 September 2009 12:43 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

I did send you an email a few days ago but it seems that you didn't
receive it - perhaps it went to the spam folder?. In any case, my email
address is dskolovos under gmail.com.

Cheers,
Dimitris

marco wrote:
> ok i don't see your email...
> I can not send private messages
>
> please can you send me email on mailto:az2004@hotmail.it
>
>
> thanks
>


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #485755 is a reply to message #485673] Mon, 14 September 2009 20:34 Go to previous messageGo to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hi dimitris

i have send you an email...

if you read my email please ansewere me...thanks

marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #486410 is a reply to message #485755] Thu, 17 September 2009 14:25 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

Adding

((Figure)getChildren().get(2)).paint(graphics);

at the end of paint(Graphics g) in ArchitectureFigure seems to be doing
the trick.

Cheers,
Dimitris

marco wrote:
> hi dimitris
>
> i have send you an email...
>
> if you read my email please ansewere me...thanks
>
> marco


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #486448 is a reply to message #486410] Thu, 17 September 2009 16:36 Go to previous messageGo to next message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hi dimitris

i have add the line

WrappingLabel label = (WrappingLabel) getChildren().get(0);
LayoutUtil.moveToCenter(label, this, graphics);
label.paint(graphics);

((Figure)getChildren().get(2)).paint(graphics);
}

but i don't resolve my problem...

I noticed that if I draw a link inside the figure that I created, the link shown...
Perhaps instead of making the figure A transparent you could put the picture B is created in the foreground
seen that the links are seen

Why is the full figure drawing in space where the editor, but I'm good at are in the outline

greetings marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #486456 is a reply to message #486448] Thu, 17 September 2009 17:05 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

I'm afraid we've drifted from the original subject as this is no longer
a EuGENia issue but clearly a GMF/GEF one. I'd suggest asking further
questions in the GMF newsgroup instead where people are more likely to
help you with such issues.

As a general remark, you'll find that you'll get more helpful answers if
you spend some time making your questions a bit more clear and focused.
For example in this post you refer to figures "A" and "B" and "the
links" - and even if I had the GMF expertise to help, I would have no
clue as to what these refer to.

Cheers,
Dimitris

marco wrote:
> hi dimitris
>
> i have add the line
>
> WrappingLabel label = (WrappingLabel) getChildren().get(0);
> LayoutUtil.moveToCenter(label, this, graphics);
> label.paint(graphics);
>
> ((Figure)getChildren().get(2)).paint(graphics);
> }
>
> but i don't resolve my problem...
>
> I noticed that if I draw a link inside the figure that I created, the
> link shown...
> Perhaps instead of making the figure A transparent you could put the
> picture B is created in the foreground
> seen that the links are seen
>
> Why is the full figure drawing in space where the editor, but I'm good
> at are in the outline
>
> greetings marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580611 is a reply to message #485239] Fri, 11 September 2009 17:24 Go to previous message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hello dimitris

thanks for the advice.

following what you told me I could put a new image on the nodes in the palette.


I have this problem. When I create a new figure that has a compartment.

if I create a new position within the compartment is not seen because it is covered from the figure that contains it.
I used the Java class DiamondFigure ... How do I change it so that it becomes transparent SIA is therefore possible to see the figures to create in it?


I also have a problem with the class the following link:

@gmf.link(source="from",target="to")
abstract class Link extends PropertyHolderElement, TypedElement {
attr LinkNavigability navigability;
ref ConnectableElement[1] from;
ref ConnectableElement[1] to;
ref Component fromContext;
ref Component toContext;
}


I wish that I automatically are assigned the values of the 4 elements from, to, fromContext, toContext.

for example if I create a component A with a connectable element in G and another element and component C with a connectable element within c.

If I create a link between A and C I want to have links in the properties of the following values:
from = b
to = c
fromContext = A
toContext = B

I adds a another source and Defining the destination of the link?
Could you tell me if there's a way what is?



Is there some manual Eugenia?
I'm doing a thesis and I realize this editor but I'm finding very little difficulty because the material available.

thank you very much

marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580627 is a reply to message #580611] Fri, 11 September 2009 17:50 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

marco wrote:
> hello dimitris
>
> thanks for the advice.
>
> following what you told me I could put a new image on the nodes in the
> palette.

Glad this helped!

>
>
> I have this problem. When I create a new figure that has a compartment.
>
> if I create a new position within the compartment is not seen because it
> is covered from the figure that contains it.
> I used the Java class DiamondFigure ... How do I change it so that it
> becomes transparent SIA is therefore possible to see the figures to
> create in it?
>

To make the diamond transparent you can remove/comment out the following
line from DiamondFigure

// Fill the shape
graphics.fillPolygon(pointList);

>
> I also have a problem with the class the following link:
>
> @gmf.link(source="from",target="to")
> abstract class Link extends PropertyHolderElement, TypedElement {
> attr LinkNavigability navigability;
> ref ConnectableElement[1] from;
> ref ConnectableElement[1] to;
> ref Component fromContext;
> ref Component toContext;
> }
>
>
> I wish that I automatically are assigned the values of the 4 elements
> from, to, fromContext, toContext.
>
> for example if I create a component A with a connectable element in G
> and another element and component C with a connectable element within c.
>
> If I create a link between A and C I want to have links in the
> properties of the following values:
> from = b
> to = c
> fromContext = A
> toContext = B
>
> I adds a another source and Defining the destination of the link?
> Could you tell me if there's a way what is?
>

There isn't anything built-in that supports this. However, this might be
possible by modifying the generated source code. I'd suggest you post a
question on this to the eclipse.modeling.gmf newsgroup.

>
>
> Is there some manual Eugenia?
> I'm doing a thesis and I realize this editor but I'm finding very little
> difficulty because the material available.

All the available material is available in
http://www.eclipse.org/gmt/epsilon/doc/eugenia/ (see the resources links
at the bottom of the page).

As stated in the description of the tool, EuGENia is a front-end that
simplifies the development of GMF editors. As such, its documentation
only covers its own features and not all the features of GMF/GEF (e.g.
drawing transparent figures is a GEF issue).

>
> thank you very much
>
> marco

Cheers,
Dimitris
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580651 is a reply to message #485439] Fri, 11 September 2009 23:56 Go to previous message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hi Dimitris
I have remove following line from DiamondFigure but i don't resolve my problem...

have you other solution?

thanks

marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580689 is a reply to message #580651] Sat, 12 September 2009 14:44 Go to previous message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
Az2004.hotmail.it wrote on Fri, 11 September 2009 19:55
> hi Dimitris
> I have remove following line from DiamondFigure but i don't resolve my problem...
>
> have you other solution?
>
> thanks
>
> marco


I discovered a new problem with the figures that I created.

If the applications to a class that è@gmf.affixed me problems viewing ...

tells me that the item can not be created ...
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580701 is a reply to message #580689] Sat, 12 September 2009 15:30 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

Please see comments below

marco wrote:
> Az2004.hotmail.it wrote on Fri, 11 September 2009 19:55
>> hi Dimitris
>> I have remove following line from DiamondFigure but i don't resolve
>> my problem...
>>
>> have you other solution?
>>
>> thanks
>>
>> marco

I'm not sure I understand the exact nature of the problem. Could you
please send me the code (in my email address - not here) and the steps I
need to go through to reproduce it?

>
>
> I discovered a new problem with the figures that I created.
>
> If the applications to a class that è@gmf.affixed me problems viewing ...
>
> tells me that the item can not be created ...

I'm afraid I don't understand this question. Perhaps seeing the code
will help.

>
>

Cheers,
Dimitris
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580737 is a reply to message #485529] Sat, 12 September 2009 15:51 Go to previous message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
ok i don't see your email...please can you send me email on mailto:az2004@hotmail.it

thanks
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580772 is a reply to message #580737] Mon, 14 September 2009 12:40 Go to previous message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
ok i don't see your email...
I can not send private messages

please can you send me email on mailto:az2004@hotmail.it


thanks
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580788 is a reply to message #580772] Mon, 14 September 2009 12:43 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

I did send you an email a few days ago but it seems that you didn't
receive it - perhaps it went to the spam folder?. In any case, my email
address is dskolovos under gmail.com.

Cheers,
Dimitris

marco wrote:
> ok i don't see your email...
> I can not send private messages
>
> please can you send me email on mailto:az2004@hotmail.it
>
>
> thanks
>


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580805 is a reply to message #485673] Mon, 14 September 2009 20:34 Go to previous message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hi dimitris

i have send you an email...

if you read my email please ansewere me...thanks

marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580826 is a reply to message #580805] Thu, 17 September 2009 14:25 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

Adding

((Figure)getChildren().get(2)).paint(graphics);

at the end of paint(Graphics g) in ArchitectureFigure seems to be doing
the trick.

Cheers,
Dimitris

marco wrote:
> hi dimitris
>
> i have send you an email...
>
> if you read my email please ansewere me...thanks
>
> marco


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580844 is a reply to message #486410] Thu, 17 September 2009 16:36 Go to previous message
marco  is currently offline marco Friend
Messages: 82
Registered: September 2009
Member
hi dimitris

i have add the line

WrappingLabel label = (WrappingLabel) getChildren().get(0);
LayoutUtil.moveToCenter(label, this, graphics);
label.paint(graphics);

((Figure)getChildren().get(2)).paint(graphics);
}

but i don't resolve my problem...

I noticed that if I draw a link inside the figure that I created, the link shown...
Perhaps instead of making the figure A transparent you could put the picture B is created in the foreground
seen that the links are seen

Why is the full figure drawing in space where the editor, but I'm good at are in the outline

greetings marco
Re: [EUGENIA]Create node for abstract class and how change node figure and diagram figure ??? [message #580855 is a reply to message #580844] Thu, 17 September 2009 17:05 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Marco,

I'm afraid we've drifted from the original subject as this is no longer
a EuGENia issue but clearly a GMF/GEF one. I'd suggest asking further
questions in the GMF newsgroup instead where people are more likely to
help you with such issues.

As a general remark, you'll find that you'll get more helpful answers if
you spend some time making your questions a bit more clear and focused.
For example in this post you refer to figures "A" and "B" and "the
links" - and even if I had the GMF expertise to help, I would have no
clue as to what these refer to.

Cheers,
Dimitris

marco wrote:
> hi dimitris
>
> i have add the line
>
> WrappingLabel label = (WrappingLabel) getChildren().get(0);
> LayoutUtil.moveToCenter(label, this, graphics);
> label.paint(graphics);
>
> ((Figure)getChildren().get(2)).paint(graphics);
> }
>
> but i don't resolve my problem...
>
> I noticed that if I draw a link inside the figure that I created, the
> link shown...
> Perhaps instead of making the figure A transparent you could put the
> picture B is created in the foreground
> seen that the links are seen
>
> Why is the full figure drawing in space where the editor, but I'm good
> at are in the outline
>
> greetings marco
Previous Topic:Modifying a Figure Descriptor
Next Topic:[EuGENia] unable to create some elements
Goto Forum:
  


Current Time: Thu Mar 28 16:14:29 GMT 2024

Powered by FUDForum. Page generated in 0.04945 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top