Guest User

Untitled

a guest
Feb 11th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. optionsMyAdd.addOption(Option.builder()
  2. .longOpt("my-address")
  3. .argName("property=value")
  4. .hasArg()
  5. .desc("Specify Address")
  6. .required()
  7. .build());
  8.  
  9.  
  10. optionsMyAdd.addOption(Option.builder()
  11. .longOpt("my-port")
  12. .argName("property=value")
  13. .hasArgs()
  14. .valueSeparator()
  15. .desc("Specify port")
  16. .required()
  17. .build());
  18.  
  19. }
Add Comment
Please, Sign In to add comment