Yeonsil Yoon

Greenhorn
+ Follow
since Mar 10, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Yeonsil Yoon

Hi.. I'm really begineer in java...
I'm trying to change plug-in project file but it's not easy..

public class AccelerometerView extends ViewPart {
...
}
This class is used for making UI like panel, button, label, etc. and it called just once when program is launched.
Looks like this is not use constructor. The UI generated using application.start() (?).

public class AccelerometerData {
...
}
This class is used for handling socket data. It received data from socket.

What I'm trying to do is check the data in AccelerometerData and update the AccelerometerView.
But I don't know how to update the existing UI attribute ex. button name change.

I'm not sure even my question is correct..
Thank you!

15 years ago
Hi.. I'm really begineer in java...
I'm trying to change plug-in project file but it's not easy..

public class AccelerometerView extends ViewPart {
...
}
This class is used for making UI like panel, button, label, etc. and it called just once when program is launched.
Looks like this is not use constructor. The UI generated using application.start() (?).

public class AccelerometerData {
...
}
This class is used for handling socket data. It received data from socket.

What I'm trying to do is check the data in AccelerometerData and update the AccelerometerView.
But I don't know how to update the existing UI attribute ex. button name change.

I'm not sure even my question is correct..
Please help me!


15 years ago