Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mycompany.app24;
- /**
- *
- * @author Admin
- */
- public class MyLongTaskResult {
- // Который содержит значение типа int и время выполнения задачи - значение типа long
- private int total;
- private long execTime;
- public MyLongTaskResult(int total, long execTime) {
- this.total = total;
- this.execTime = execTime;
- }
- public int getTotal() {
- return total;
- }
- public void setTotal(int total) {
- this.total = total;
- }
- public long getExecTime() {
- return execTime;
- }
- public void setExecTime(long execTime) {
- this.execTime = execTime;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement