Advertisement
Guest User

GetIssue

a guest
Feb 12th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package com.company;
  2. import java.util.Scanner;
  3. public class GetIssue {
  4.     private String issueKey;
  5.     private Scanner input = new Scanner(System.in);
  6.  
  7.  
  8.  
  9.     void setIssueKey()
  10.     {
  11.      System.out.println("Wprowadź klucz zgłoszenia: ");
  12.      this.issueKey = this.input.nextLine();
  13.  
  14.     }
  15.     String getIssueKey()
  16.     {
  17.         return issueKey;
  18.     }
  19.  
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement