<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>LTSA - new forum posts</title>
		<link>http://ltsa.wikidot.com/forum/start</link>
		<description>Posts in forums of the site &quot;LTSA&quot; - The Labelled Transition System Analyser</description>
				<copyright></copyright>
		<lastBuildDate>Tue, 21 May 2013 13:20:56 +0000</lastBuildDate>
		
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-202788#post-650954</guid>
				<title>railway signaling systems</title>
				<link>http://ltsa.wikidot.com/forum/t-202788/railway-signaling-systems#post-650954</link>
				<description></description>
				<pubDate>Tue, 08 Dec 2009 12:44:18 +0000</pubDate>
				<wikidot:authorName>SteoFlorence</wikidot:authorName>				<wikidot:authorUserId>413814</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello everyone. I have a question regarding FSP. My goal is to model a rail system and I have as main actors: the cabin of train control and signaling system to the ground. I wrote this code FSP, but it is all in a single process called ENGINE how do I separate them? I want to do this to enable the display of graphics LTS (I have been too many to view them with LTSA) and exploit the potential of the tool that allows concurrent software</p> <p>Here is the code FSP:</p> <p>const MAX_DIST = 5<br /> range DIST = 0..MAX_DIST<br /> const MAX_SEC = 12<br /> range SEC = 0..MAX_SEC<br /> const MAX_VEL = 5<br /> range VEL = 1..MAX_VEL</p> <p>ENGINE = (engineOn -&gt;THROTTLE),</p> <p>THROTTLE = ( start -&gt; SPEED_COUNTER[1]<br /> | engineOff -&gt;ENGINE</p> <p>),</p> <p>SPEED_COUNTER[v:VEL] = ( when(v&lt;MAX_VEL) accelerator[v] -&gt;SPEED_COUNTER[v+1]<br /> | when(v&gt;1) reduceSpeed[v-1] -&gt;SPEED_COUNTER[v-1]<br /> | engineOff -&gt;ENGINE<br /> | when(v&gt;1) signal_received -&gt;metri250-&gt;DISTANCE[MAX_DIST][v]<br /> | csr -&gt;beep-&gt;CSR[v][MAX_SEC]<br /> ),</p> <p>CSR[v:VEL][s:SEC] =<br /> (when(s&gt;0)tick-&gt;CSR[v][s-1]<br /> |when(s==0) brake-&gt;SPEED_COUNTER[1]<br /> |when(s&gt;0)release -&gt; CHECK_DISTANCE[MAX_DIST][v]<br /> |signal_received -&gt; release -&gt; SPEED_COUNTER[v]<br /> ),</p> <p>DISTANCE[d:DIST][v:VEL] =<br /> (when(d&gt;0)avanza50mt-&gt;DISTANCE[d-1][v]<br /> |when(d==0) brake-&gt;SPEED_COUNTER[1]<br /> |when(d&gt;0)csr -&gt;beep-&gt;CSR[v][MAX_SEC]<br /> ),</p> <p>CHECK_DISTANCE[c:DIST][v:VEL] =<br /> (when(c&gt;0)avanza50mt-&gt;CHECK_DISTANCE[c-1][v]<br /> |when(c==0) brake-&gt;SPEED_COUNTER[1]<br /> |when(c&gt;0) signal_received -&gt;SPEED_COUNTER[v]<br /> ).</p> <p>Thanks for any reply if you need more information contact me.</p> <p>Sincerely Stefano</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85541">Finite State Processes (FSP) / Questions</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-202788/railway-signaling-systems">railway signaling systems</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-184742#post-597647</guid>
				<title>Re: Question about doLiveness</title>
				<link>http://ltsa.wikidot.com/forum/t-184742/question-about-doliveness#post-597647</link>
				<description></description>
				<pubDate>Wed, 30 Sep 2009 18:16:34 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks for the answer</p> <p>Thats the order of the functions I call:<br /> ltsaEditor.doParse(true);<br /> ltsaEditor.doCompileCompose(complFSP);<br /> ltsaEditor.doLiveness(firstAssertionName);</p> <p>My assumption is as follows:<br /> I think you do the parsing/compiling in a seperate thread / job ? Maybe the parsing/compiling is not yet finished when I already call doLiveness sothat doLiveness cannot work<br /> But thats of course just an assumption as I cannot see into your code.</p> <p>Many greetings</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-184742/question-about-doliveness">Question about doLiveness</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-184742#post-596745</guid>
				<title>Re: Question about doLiveness</title>
				<link>http://ltsa.wikidot.com/forum/t-184742/question-about-doliveness#post-596745</link>
				<description></description>
				<pubDate>Tue, 29 Sep 2009 21:17:43 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi and thanks for the question..<br /> Do you call doParse(boolean updatePages) before compiling? I'm not sure it marks the assertions without a parse - although I may be wrong.<br /> Unfortunately these few weeks have been extremely busy.<br /> I will try to take a look later in the week.<br /> Regards</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-184742/question-about-doliveness">Question about doLiveness</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-184742#post-593627</guid>
				<title>Question about doLiveness</title>
				<link>http://ltsa.wikidot.com/forum/t-184742/question-about-doliveness#post-593627</link>
				<description></description>
				<pubDate>Fri, 25 Sep 2009 20:23:38 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello</p> <p>Ive got a question about the functionality of the doLiveness method. If I call this function in my program right after intialising the fsp editor and compiling the fsp text nothing happens.<br /> If I do the same manually, that means, open Editor, compile the fsp text und check one assertion, it works fine.<br /> What is the difference between calling this function in the gui and in the program<br /> I tracked the execution of these both approaches in the debugger and the only difference I ve noticed is as follows:<br /> In the case I call it in the GUI: the variable property with the name of the assertion keeps its value all the time<br /> In the case I call it in my program: the variable property loses its value after 2 or 3 steps and becomes ""</p> <p>Whats the reason for this?</p> <p>Thanks</p> <p>Many greetings</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-184742/question-about-doliveness">Question about doLiveness</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-566204</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-566204</link>
				<description></description>
				<pubDate>Fri, 21 Aug 2009 18:44:03 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi</p> <p>My problem is not project specific. Sorry my English is no very good, but nevertheless I try it_:)</p> <p>If I use your standalone ltsa tool I go to Check-&gt;LTL and choose one assertion. Everything works fine<br /> If I take the same FSP text and use it in the LTSA eclipse plugin I cannot find this function. In the outline view no assertions is shown and there is no "check-&gt;ltl" option.</p> <p>Many greetings</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-174360#post-555779</guid>
				<title>SWT AWT Eclipse Bugs - All Platforms</title>
				<link>http://ltsa.wikidot.com/forum/t-174360/swt-awt-eclipse-bugs-all-platforms#post-555779</link>
				<description></description>
				<pubDate>Fri, 07 Aug 2009 14:45:14 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p><a href="http://wiki.eclipse.org/Albireo_SWT_AWT_bugs">http://wiki.eclipse.org/Albireo_SWT_AWT_bugs</a></p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-174360/swt-awt-eclipse-bugs-all-platforms">SWT AWT Eclipse Bugs - All Platforms</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-553339</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-553339</link>
				<description></description>
				<pubDate>Wed, 05 Aug 2009 00:55:08 +0000</pubDate>
				<wikidot:authorName>bianculld</wikidot:authorName>				<wikidot:authorUserId>354408</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The perspective is now visible, thanks a lot for the new build! I'm running it on a 64 bit Cocoa version.<br /> I tried checking a property of the seefm2007 example and seemed to work, even though the LTSA-BPEL editor reported some syntax errors.<br /> I'll play a little more in the next days and let you know.</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-553193</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-553193</link>
				<description></description>
				<pubDate>Tue, 04 Aug 2009 19:57:04 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>So you are running 64bit then? That might cause further issues…</p> <p>Anyway, back on 32bit Eclipse 3.5 MAC OS X and I had more time to "grab a mac" to rebuild the projects… seems like an Execution Environment issue (so much for Technology Independence!).</p> <div class="image-container aligncenter"><img src="http://www.doc.ic.ac.uk/ltsa/eclipse/images/wse-mac-test1.png" alt="wse-mac-test1.png" class="image" /></div> <p>I put this test build on a new update site here: <a href="http://www.doc.ic.ac.uk/ltsa/eclipse/mac" >MAC OSX WSE Install</a> which appears to install ok.</p> <p>Not everything is working correctly (SWT issues seem to be evident), but should let you play a bit further.</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-549931</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-549931</link>
				<description></description>
				<pubDate>Fri, 31 Jul 2009 21:51:11 +0000</pubDate>
				<wikidot:authorName>bianculld</wikidot:authorName>				<wikidot:authorUserId>354408</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm using Java 1.6</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-549910</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-549910</link>
				<description></description>
				<pubDate>Fri, 31 Jul 2009 21:26:57 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Very strange no error report at all…. btw. what version of Java are you running again?<br /> WS-Engineer needs at least JRE 1.6</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-549904</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-549904</link>
				<description></description>
				<pubDate>Fri, 31 Jul 2009 21:19:57 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>can you attach or send me your sample model (LTS) and I will also try to recreate this.</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-549539</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-549539</link>
				<description></description>
				<pubDate>Fri, 31 Jul 2009 11:52:50 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>No i meant I dont find the function neither in the default custom LTSA editor nor in the original editor. The other view don't recognise any of my assertions :(</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-548993</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-548993</link>
				<description></description>
				<pubDate>Thu, 30 Jul 2009 21:42:57 +0000</pubDate>
				<wikidot:authorName>bianculld</wikidot:authorName>				<wikidot:authorUserId>354408</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I've also tried with a vanilla installation of Eclipse 3.4.2 and LTSA/WS-Engineer from the official install site (not the experimental install35) and the problem is still there: LTSA works fine but the "LTSA WS-Engineer" perspective is not available in the list of available perspectives. The workspace error log does not contain any reference to the plugin.</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-544337</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-544337</link>
				<description></description>
				<pubDate>Sat, 25 Jul 2009 21:24:35 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>do you mean you could check assertions in the default LTSA editor, but not your own custom plug-in?<br /> I will check the default custom plug-in…</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-542236</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-542236</link>
				<description></description>
				<pubDate>Thu, 23 Jul 2009 13:31:52 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Ok I can do this, but its not a big deal ;)</p> <p>But i have another problem. While developing my plugin I 've noticed that i cannot more check assertions. I dont find any options in the gui although i defined two assertions in the lts file? Have you removed this function?<br /> doLiveness(nameOfAssertion) has no effect.</p> <p>Many Greetings</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-541474</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-541474</link>
				<description></description>
				<pubDate>Wed, 22 Jul 2009 18:25:55 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>should be something at least… try to send me your log file..<br /> i.e. .\.metadata\.log file of your workspace.</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-541437</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-541437</link>
				<description></description>
				<pubDate>Wed, 22 Jul 2009 17:51:01 +0000</pubDate>
				<wikidot:authorName>bianculld</wikidot:authorName>				<wikidot:authorUserId>354408</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>There's nothing related to WS-Engineer in the log.</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-540923</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-540923</link>
				<description></description>
				<pubDate>Wed, 22 Jul 2009 07:47:14 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Can you post anything related to WS-Engineer from the Error Log View on startup?</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-540703</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-540703</link>
				<description></description>
				<pubDate>Wed, 22 Jul 2009 01:40:35 +0000</pubDate>
				<wikidot:authorName>bianculld</wikidot:authorName>				<wikidot:authorUserId>354408</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The 3.5 install site works now and I'm able to switch to the LTSA perspective and run LTSA. However, the "LTSA WS-Engineer" perspective is not listed in the list of available perspectives, even though the WS-Engineer plugin is reported in the Eclipse configuration details.</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-539986</guid>
				<title>Re: WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-539986</link>
				<description></description>
				<pubDate>Tue, 21 Jul 2009 09:26:20 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I did start porting it to v3.5, you can try the install here:</p> <p><a href="http://www.doc.ic.ac.uk/ltsa/eclipse/install35">http://www.doc.ic.ac.uk/ltsa/eclipse/install35</a></p> <p>otherwise download the libs from <a href="http://www.doc.ic.ac.uk/ltsa/eclipse/install35/plugins/">http://www.doc.ic.ac.uk/ltsa/eclipse/install35/plugins/</a></p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-170787#post-539985</guid>
				<title>WS-Engineer/LTSA installation on Mac, Eclipse 3.5</title>
				<link>http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5#post-539985</link>
				<description></description>
				<pubDate>Tue, 21 Jul 2009 09:25:37 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I tried to install LTSA Eclipse on the 3.5 Mac version but the update<br /> site is not recognized (note: the same thing happened with Eclipse<br /> 3.4). I also downloaded the single jars but, after restarting the IDE,<br /> they are not loaded.</p> <p>Can you help me?</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-89985">LTSA (Eclipse) Tool / Installation</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-170787/ws-engineer-ltsa-installation-on-mac-eclipse-3-5">WS-Engineer/LTSA installation on Mac, Eclipse 3.5</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-538334</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-538334</link>
				<description></description>
				<pubDate>Sun, 19 Jul 2009 12:10:58 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Glad to hear you had success.</p> <p>If it all proves successful, you might like to share your design on this wiki! :-)</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-537866</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-537866</link>
				<description></description>
				<pubDate>Sat, 18 Jul 2009 16:24:14 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>ok works great<br /> Thank you! :)</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-526464</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-526464</link>
				<description></description>
				<pubDate>Sun, 05 Jul 2009 13:43:00 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>You can use the following (inherited from ltsaeclipseEditor) to parse, compile, check properties and assertions…</p> <div class="code"> <pre> <code>doParse(boolean updatePages) - where updatePages refreshes the LTS Output and Draw views doCompile(String compositionString) - where compositionString is the name of the composition to compile doAnalyse() - after doCompile, performs default safety check on properties specified in the model compiled doLiveness(string property) - where property is the name of the assertion to check</code> </pre></div> <p>LTSAAdmin</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-525797</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-525797</link>
				<description></description>
				<pubDate>Sat, 04 Jul 2009 12:34:14 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi</p> <p>I already read this article. But my problem is not the extending or changing your plugin. I don't get how i can address your functions within my plugins (for example compile, or check assertions etc)</p> <p>many greetings</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-525458</guid>
				<title>Re: Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-525458</link>
				<description></description>
				<pubDate>Fri, 03 Jul 2009 22:04:40 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello again,</p> <p>There is an example of extending the plug-in (with your own editor - which could just be an extended LTS editor) here:</p> <p><a href="http://www.doc.ic.ac.uk/ltsa/eclipse/help/installing_the_sample_new_edit.htm" >Installing the Sample New Editor plug-in</a></p> <p>Try this first and let me know if it meets your requirements.</p> <p>LTSAAdmin</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-166906#post-525378</guid>
				<title>Api</title>
				<link>http://ltsa.wikidot.com/forum/t-166906/api#post-525378</link>
				<description></description>
				<pubDate>Fri, 03 Jul 2009 19:34:11 +0000</pubDate>
				<wikidot:authorName>Artanis</wikidot:authorName>				<wikidot:authorUserId>346701</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>hello</p> <p>Again i want to say that I appreciate your eclipse ltsa plugin. But is it possible that you introduce extension points oder an api? I would like have the function that i give over a valid ltsa file / text and receive the result of the anaylzis, especially the information whether my assertions/fluents hold.</p> <p>Many Greeting</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-166906/api">Api</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-160508#post-499428</guid>
				<title>Re: Transitions Tab</title>
				<link>http://ltsa.wikidot.com/forum/t-160508/transitions-tab#post-499428</link>
				<description></description>
				<pubDate>Thu, 04 Jun 2009 10:07:12 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>update: seems it was a quick fix to re-enable the transitions view.</p> <p>I have not had time to test it properly, so please let me know if you encounter problems.</p> <p>The new version is in incubation here:</p> <p><a href="http://www.doc.ic.ac.uk/ltsa/eclipse/installtest/site.xml">http://www.doc.ic.ac.uk/ltsa/eclipse/installtest/site.xml</a></p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-160508/transitions-tab">Transitions Tab</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://ltsa.wikidot.com/forum/t-160508#post-499427</guid>
				<title>Transitions Tab</title>
				<link>http://ltsa.wikidot.com/forum/t-160508/transitions-tab#post-499427</link>
				<description></description>
				<pubDate>Thu, 04 Jun 2009 10:06:50 +0000</pubDate>
				<wikidot:authorName>ltsaadmin</wikidot:authorName>				<wikidot:authorUserId>334544</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi Howard,</p> <p>Not sure if you received my last email yesterday, please let me know if there is anything I am seriously overlooking - this is the only feature that is preventing me from running the plugin in Eclipse.</p> <p>I am referring to the Transitions tab from the LTS Draw perspective. I can draw it fine, I can see the alphabet fine and when I click on Transitions nothing comes up (I take it to have the equivalent functionality of selecting Window-&gt; Transitions in the full LTSA tool. I am running it on XP with the latest Java version and Eclipse 3.4.2 if it is of any help.</p> <p>Regards,<br /> George</p> <br/>Forum category: <a href="http://ltsa.wikidot.com/forum/c-85535">LTSA (Eclipse) Tool / Bug Reports</a><br/>Forum thread: <a href="http://ltsa.wikidot.com/forum/t-160508/transitions-tab">Transitions Tab</a>
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>