public ScAbstractCommandControl newGpsReportDataIdCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getGpsReportDataIdAdaptor());
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newResultEffectiveLocalTsCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getResultEffectiveLocalTsAdaptor());
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newSubscriberNameCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getSubscriberNameAdaptor());
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newCarrierCodeNumberDisplayLabelCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getCarrierCodeNumberDisplayLabelAdaptor());
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newApplicableKilogramsCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getApplicableKilogramsAdaptor());
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newArrivalLocalTmCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getArrivalLocalTmAdaptor());
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newDestinationAirportCodeCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getDestinationAirportCodeAdaptor());
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newExpectedDepartureLocalTsCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScTimestampText t = getAirportLocalTimestampText(getExpectedDepartureLocalTsAdaptor());
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(t);
   k.setCommand(c);
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
 public ScAbstractCommandControl newPostCodeCommandControl(
     String label, ScCommand c, boolean openNewWindow) {
   ScWebKeyLink k = new ScWebKeyLink();
   k.setLabel(label);
   k.setValue(getPostCodeAdaptor());
   k.setCommand(c);
   k.setArgument(getPostWebKeyAdaptor());
   k.setOpenNewWindow(openNewWindow);
   return k;
 }
Example #10
0
 public void applyModel(ScServletData data, Object model) {
   super.applyModel(data, model);
   for (ScControl c : getColumns()) c.applyModel(data, model);
 }
Example #11
0
 public void initialize() {
   super.initialize();
   setValue("Export");
 }