1 26 27 package org.objectweb.openccm.packaging.cmdline; 28 29 30 36 37 public class OptionAAR 38 extends OptionBase 39 { 40 46 52 57 public 58 OptionAAR(PATApplication application) 59 { 60 setLabels(new String [] { "-AAR" }); 61 setDescription(new String [] { "Builds Assembly ARchives from Component Assembly Descriptors"}); 62 setApplication(application); 63 } 64 65 71 77 82 public String  83 getBaseOptionLabel() 84 { 85 return "-AAR"; 86 } 87 88 93 public void 94 consumeOption(String current) 95 { 96 getApplication().displayGUI(false); 97 getApplication().setAARMaker(true); 98 } 99 100 } 106 | Popular Tags |