You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Application.java 167B

1234567891011
  1. public class Application {
  2. public int number;
  3. public Application(int number) {
  4. this.number = number;
  5. }
  6. public int getNumber() {
  7. return number;
  8. }
  9. }