sergAccount

Untitled

Aug 23rd, 2020
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.spec.model;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Institute {
  13.     // содержит набор констант - переменных с модификатором static final
  14.     // INSTITUTE1 - константа (имя переменной с заглавной буквы)
  15.     public static final int INSTITUTE1 = 1011;
  16.     public static final int INSTITUTE2 = 1012;
  17.     // ...
  18.     //
  19.     public static final int INSTITUTEN = 1020;
  20.  
  21. }
  22.  
Add Comment
Please, Sign In to add comment