Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Remote Application Platform (RAP) » Auto-refreshing ViewPart by using Job
Auto-refreshing ViewPart by using Job [message #820980] Wed, 14 March 2012 20:23 Go to next message
Ronald So is currently offline Ronald SoFriend
Messages: 198
Registered: April 2011
Senior Member
Hello,

I have an issue updating a view. It's just a label that I am hoping to present the current time.


public class TestView extends ViewPart {

private Label label;
private String jobId;
private Display display;

public TestView() {
System.out.println("TestView.TestView()");
}

@Override
public void createPartControl(Composite parent) {
this.setContentDescription("This is just a test.");

GridLayoutFactory.fillDefaults().applyTo(parent);

label = new Label(parent, SWT.BOLD | SWT.BORDER);
jobId = UUID.randomUUID().toString();

System.out.println("Job ID: " + jobId);

display = parent.getDisplay();

Job job = new Job(jobId) {
protected IStatus run(IProgressMonitor monitor) {
// Assume this getTime() method takes a long time
final String newString = GregorianCalendar.getInstance()
.getTime().toString();
System.out.println("new Time: " + newString);

display.asyncExec(new Runnable() {
public void run() {
// Updating UI has to happen in a thread that is called
// by display.asyncExec.
updateLabel(newString);
}
});
return Status.OK_STATUS;
}
};
job.schedule();
}

@Override
public void setFocus() {
System.out.println("TestView.setFocus()");
label.setFocus();
}

private void updateLabel(String newString) {
System.out.println("TestView.updateLabel()");
if (!label.isDisposed()) {
label.setText(newString);
}
}
}


The current time stamp will show up fine initially, but it will never get updated anymore. How do I

1) Update this label with the current time continuously? I know I can use UICallBack but I think the Job should handle this for me automagically.

2) Update this label when user gets to the page (pull model instead of push).


Thank you,
Ronald
Re: Auto-refreshing ViewPart by using Job [message #821044 is a reply to message #820980] Wed, 14 March 2012 21:48 Go to previous messageGo to next message
Chris Fairhall is currently offline Chris FairhallFriend
Messages: 221
Registered: February 2011
Senior Member
Either I'm missing something or you never reschedule the job to run more than once.
Re: Auto-refreshing ViewPart by using Job [message #821047 is a reply to message #821044] Wed, 14 March 2012 21:53 Go to previous messageGo to next message
Ronald So is currently offline Ronald SoFriend
Messages: 198
Registered: April 2011
Senior Member
Smile Yeah Chris. You got that right.

I am now attaching a IPartListener2 and run the job again when partActivated() is invoked. The time label refreshes fine now. However, I noticed that partActivated() does not only get called when user visits the View. It gets called also when user leaves the view. That said, the Job will be invoked when the user leaves the page. Is there a way to get around this problem?

Also, what if I have a view that I want to keep the port open and so the time label will keep updating without user intervention?

Thanks!
Re: Auto-refreshing ViewPart by using Job [message #821197 is a reply to message #820980] Thu, 15 March 2012 03:17 Go to previous messageGo to next message
Ronald So is currently offline Ronald SoFriend
Messages: 198
Registered: April 2011
Senior Member
Not sure why the forum creates two threads for my question. Some discussions are going on in a different thread.

http://www.eclipse.org/forums/index.php/t/309839/
Re: Auto-refreshing ViewPart by using Job [message #821680 is a reply to message #820980] Thu, 15 March 2012 17:21 Go to previous messageGo to next message
Elias Volanakis is currently offline Elias VolanakisFriend
Messages: 43
Registered: July 2009
Member
Hi Ronald,

your code looks good. The only thing missing is a loop in your job. Currently you only update the label once :).

See attached file.

Best regards,
Elias.
begin 644 TestView.java
M<&%C:V%G92!H96QL;SL*"FEM<&]R="!J879A+G5T:6PN1W)E9V]R:6%N0V%L
M96YD87(["FEM<&]R="!J879A+G5T:6PN555)1#L*"FEM<&]R="!O<F<N96-L
M:7!S92YC;W)E+G)U;G1I;64N25!R;V=R97-S36]N:71O<CL*:6UP;W)T(&]R
M9RYE8VQI<'-E+F-O<F4N<G5N=&EM92Y)4W1A='5S.PII;7!O<G0@;W)G+F5C
M;&EP<V4N8V]R92YR=6YT:6UE+E-T871U<SL*:6UP;W)T(&]R9RYE8VQI<'-E
M+F-O<F4N<G5N=&EM92YJ;V)S+DIO8CL*:6UP;W)T(&]R9RYE8VQI<'-E+FIF
M86-E+FQA>6]U="Y'<FED3&%Y;W5T1F%C=&]R>3L*:6UP;W)T(&]R9RYE8VQI
M<'-E+G-W="Y35U0["FEM<&]R="!O<F<N96-L:7!S92YS=W0N=VED9V5T<RY#
M;VUP;W-I=&4["FEM<&]R="!O<F<N96-L:7!S92YS=W0N=VED9V5T<RY$:7-P
M;&%Y.PII;7!O<G0@;W)G+F5C;&EP<V4N<W=T+G=I9&=E=',N3&%B96P["FEM
M<&]R="!O<F<N96-L:7!S92YU:2YP87)T+E9I97=087)T.PH*<'5B;&EC(&-L
M87-S(%1E<W16:65W(&5X=&5N9',@5FEE=U!A<G0@>PH*"7!R:79A=&4@3&%B
M96P@;&%B96P["@EP<FEV871E(%-T<FEN9R!J;V))9#L*"7!R:79A=&4@1&ES
M<&QA>2!D:7-P;&%Y.PH*"7!U8FQI8R!497-T5FEE=R@I('L*"0E3>7-T96TN
M;W5T+G!R:6YT;&XH(E1E<W16:65W+E1E<W16:65W*"DB*3L*"7T*"B`@("`@
M("`@0$]V97)R:61E"@EP=6)L:6,@=F]I9"!C<F5A=&5087)T0V]N=')O;"A#
M;VUP;W-I=&4@<&%R96YT*2!["@D)=&AI<RYS971#;VYT96YT1&5S8W)I<'1I
M;VXH(E1H:7,@:7,@:G5S="!A('1E<W0N(BD["@H)"4=R:61,87EO=71&86-T
M;W)Y+F9I;&Q$969A=6QT<R@I+F%P<&QY5&\H<&%R96YT*3L*"@D);&%B96P@
M/2!N97<@3&%B96PH<&%R96YT+"!35U0N0D],1"!\(%-75"Y"3U)$15(I.PH)
M"6IO8DED(#T@555)1"YR86YD;VU554E$*"DN=&]3=')I;F<H*3L*"@D)4WES
M=&5M+F]U="YP<FEN=&QN*")*;V(@240Z("(@*R!J;V))9"D["@H)"61I<W!L
M87D@/2!P87)E;G0N9V5T1&ES<&QA>2@I.PH*"0E*;V(@:F]B(#T@;F5W($IO
M8BAJ;V))9"D@>PH)"0EP<F]T96-T960@25-T871U<R!R=6XH25!R;V=R97-S
M36]N:71O<B!M;VYI=&]R*2!["@D)"0EW:&EL92`H(6QA8F5L+FES1&ES<&]S
M960H*2D@>PH)"0D)"2\O($%S<W5M92!T:&ES(&=E=%1I;64H*2!M971H;V0@
M=&%K97,@82!L;VYG('1I;64*"0D)"0EF:6YA;"!3=')I;F<@;F5W4W1R:6YG
M(#T@1W)E9V]R:6%N0V%L96YD87(N9V5T26YS=&%N8V4H*0H)"0D)"0D)+F=E
M=%1I;64H*2YT;U-T<FEN9R@I.PH)"0D)"5-Y<W1E;2YO=70N<')I;G1L;B@B
M;F5W(%1I;64Z("(@*R!N97=3=')I;F<I.PH*"0D)"0ED:7-P;&%Y+F%S>6YC
M17AE8RAN97<@4G5N;F%B;&4H*2!["@D)"0D)"7!U8FQI8R!V;VED(')U;B@I
M('L*"0D)"0D)"2\O(%5P9&%T:6YG(%5)(&AA<R!T;R!H87!P96X@:6X@82!T
M:')E860@=&AA="!I<R!C86QL960*"0D)"0D)"2\O(&)Y(&1I<W!L87DN87-Y
M;F-%>&5C+@H)"0D)"0D)=7!D871E3&%B96PH;F5W4W1R:6YG*3L*"0D)"0D)
M?0H)"0D)"7TI.PH)"0D)"71R>2!["@D)"0D)"51H<F5A9"YS;&5E<"@R,#`P
M*3L*"0D)"0E](&-A=&-H("A);G1E<G)U<'1E9$5X8V5P=&EO;B!E*2!["@D)
M"0D)"64N<')I;G13=&%C:U1R86-E*"D["@D)"0D)"6)R96%K.PH)"0D)"7T*
M"0D)"7T*"0D)"7)E='5R;B!3=&%T=7,N3TM?4U1!5%53.PH)"0E]"@D)?3L*
M"0EJ;V(N<V-H961U;&4H*3L*"7T*"@E`3W9E<G)I9&4*"7!U8FQI8R!V;VED
M('-E=$9O8W5S*"D@>PH)"5-Y<W1E;2YO=70N<')I;G1L;B@B5&5S=%9I97<N
M<V5T1F]C=7,H*2(I.PH)"6QA8F5L+G-E=$9O8W5S*"D["@E]"@H)<')I=F%T
M92!V;VED('5P9&%T94QA8F5L*%-T<FEN9R!N97=3=')I;F<I('L*"0E3>7-T
M96TN;W5T+G!R:6YT;&XH(E1E<W16:65W+G5P9&%T94QA8F5L*"DB*3L*"0EI
M9B`H(6QA8F5L+FES1&ES<&]S960H*2D@>PH)"0EL86)E;"YS971497AT*&YE
2=U-T<FEN9RD["@D)?0H)?0I]
`
end

--
Elias Volanakis | http://eclipsesource.com
elias (AT) eclipsesource.com | @evolanakis
Re: Auto-refreshing ViewPart by using Job [message #821758 is a reply to message #821047] Thu, 15 March 2012 19:42 Go to previous message
Elias Volanakis is currently offline Elias VolanakisFriend
Messages: 26
Registered: July 2009
Junior Member
Hi Ronald,

the part listener gets call for EVERY view, i.e. not only your particular view.

However, you can use the 'part' parameter to figure out if the notification is relevant for you, i.e.:

@Override
public void partActivated(IWorkbenchPart part) {
if (part == this) {
System.out.println("TestView.partActivated() " + part);
// ...
}
}

@Override
public void partDeactivated(IWorkbenchPart part) {
if (part == this) {
System.out.println("TestView.partDeactivated() " + part);
// ...
}
}

Hope this helps,
Elias.


Elias Volanakis | http://eclipsesource.com
elias (AT) eclipsesource.com | @evolanakis
Re: Auto-refreshing ViewPart by using Job [message #821761 is a reply to message #821047] Thu, 15 March 2012 19:42 Go to previous message
Elias Volanakis is currently offline Elias VolanakisFriend
Messages: 43
Registered: July 2009
Member
Hi Ronald,

the part listener gets call for EVERY view, i.e. not only your particular view.

However, you can use the 'part' parameter to figure out if the notification is relevant for you, i.e.:

@Override
public void partActivated(IWorkbenchPart part) {
if (part == this) {
System.out.println("TestView.partActivated() " + part);
// ...
}
}

@Override
public void partDeactivated(IWorkbenchPart part) {
if (part == this) {
System.out.println("TestView.partDeactivated() " + part);
// ...
}
}

Hope this helps,
Elias.

--
Elias Volanakis | http://eclipsesource.com
elias (AT) eclipsesource.com | @evolanakis
Previous Topic:Auto-refreshing ViewPart by using Job
Next Topic:Finding iFrame that corrensponds to TreeItem or TableRow
Goto Forum:
  


Current Time: Thu Apr 25 04:23:16 GMT 2024

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

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

Back to the top