<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi Sean,<br>
Sorry about that. <br>
This is the problem with not having all the modules built in the
default build, I'll submit a bug for that.<br>
<br>
The bug in question is:<br>
<a class="moz-txt-link-freetext" href="http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5661">http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5661</a><br>
<br>
It would be better to not use util.SwingWorker and use
javax.swing.SwingWorker because the former has unknown licensing and
is not supported, whereas the latter has well known licensing and is
supported.<br>
<br>
Note that some of the module manager code uses a separate
SwingWorker that has similar issues to util.SwingWorker. I
submitted a separate bug for that.<br>
<br>
The changes are fairly simple, see
gui/src/org/kepler/gui/ProgressMonitorSwingWorker.java and the
SwingWorker tutorial listed in
<a class="moz-txt-link-freetext" href="http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5661">http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5661</a><br>
Basically:<br>
construct() becomes public Object doInBackground() {<br>
destroy() becomes done()<br>
<br>
In derived classes, we call<br>
worker.start() becomes worker.execute()<br>
worker.destroy() becomes worker.done()<br>
worker.interrupt() becomes worker.cancel()<br>
<br>
_Christopher<br>
<br>
<br>
<div class="moz-cite-prefix">On 8/7/12 10:36 AM, Sean Riddle wrote:<br>
</div>
<blockquote
cite="mid:CAAjdow=BxQd42XZvGN+DOZ9-nxbR8fnC9bg3JRnX1Y=jpFhe=w@mail.gmail.com"
type="cite">
<div>Hi all,<br>
</div>
<div><br>
</div>
<div>I'm experiencing problems with the trunk of the reporting
suite. SearchScheduleSwingWorker and UploadingKARFileSwingWorker
from workflow-scheduler-gui will not compile, as they import
util.SwingWorker, which is not found.</div>
<div><br>
</div>
<div>I tried replacing these imports to reference the SwingWorker
class introduced in Java 1.6, but these classes do not implement
required methods. Am I missing a jar or module that would
provide this dependency?</div>
<div><br>
</div>
<div>- Sean</div>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<br>
<pre wrap="">_______________________________________________
Kepler-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Kepler-dev@kepler-project.org">Kepler-dev@kepler-project.org</a>
<a class="moz-txt-link-freetext" href="http://lists.nceas.ucsb.edu/kepler/mailman/listinfo/kepler-dev">http://lists.nceas.ucsb.edu/kepler/mailman/listinfo/kepler-dev</a>
</pre>
</blockquote>
<br>
<pre class="moz-signature" cols="72">--
Christopher Brooks, PMP University of California
CHESS Executive Director US Mail: 337 Cory Hall
Programmer/Analyst CHESS/Ptolemy/Trust Berkeley, CA 94720-1774
ph: 510.643.9841 (Office: 545Q Cory)
home: (F-Tu) 707.665.0131 cell: 707.332.0670 </pre>
</body>
</html>