Cleanup: make attributes private
This commit is contained in:
committed by
Laurent Clouet
parent
f6f21f1bb4
commit
92a0a4938c
@@ -54,23 +54,23 @@ import com.sheepit.client.standalone.GuiSwing;
|
|||||||
import com.sheepit.client.standalone.GuiSwing.ActivityType;
|
import com.sheepit.client.standalone.GuiSwing.ActivityType;
|
||||||
|
|
||||||
public class Working implements Activity {
|
public class Working implements Activity {
|
||||||
GuiSwing parent;
|
private GuiSwing parent;
|
||||||
|
|
||||||
JLabel statusContent;
|
private JLabel statusContent;
|
||||||
JLabel renderedFrameContent;
|
private JLabel renderedFrameContent;
|
||||||
JLabel remainingFrameContent;
|
private JLabel remainingFrameContent;
|
||||||
JLabel lastRenderTime;
|
private JLabel lastRenderTime;
|
||||||
JLabel lastRender;
|
private JLabel lastRender;
|
||||||
JLabel creditEarned;
|
private JLabel creditEarned;
|
||||||
JButton pauseButton;
|
private JButton pauseButton;
|
||||||
JButton exitAfterFrame;
|
private JButton exitAfterFrame;
|
||||||
JLabel current_project_name_value;
|
private JLabel current_project_name_value;
|
||||||
JLabel current_project_duration_value;
|
private JLabel current_project_duration_value;
|
||||||
JLabel currrent_project_progression_value;
|
private JLabel currrent_project_progression_value;
|
||||||
JLabel user_info_points_total_value;
|
private JLabel user_info_points_total_value;
|
||||||
JLabel waiting_projects_value;
|
private JLabel waiting_projects_value;
|
||||||
JLabel connected_machines_value;
|
private JLabel connected_machines_value;
|
||||||
JLabel user_info_total_rendertime_this_session_value;
|
private JLabel user_info_total_rendertime_this_session_value;
|
||||||
|
|
||||||
public Working(GuiSwing parent_) {
|
public Working(GuiSwing parent_) {
|
||||||
parent = parent_;
|
parent = parent_;
|
||||||
|
|||||||
Reference in New Issue
Block a user