Package org.xrace.view.common.importation.puces

Examples of org.xrace.view.common.importation.puces.ImportationPucesLineDataViewPanel


      }
    }));

    add(new ImportationIgnoredLinesPanel("ignoredLines", importationPuces
        .getIgnoredLines()));
    add(new ImportationPucesLineDataViewPanel("errorLinesDataView",
        importationPuces.getLinesNonImportes(), false, true)
    {
      private static final long serialVersionUID = 1L;

      @Override
      protected void onClickVoirErreurs(
          ImportationPucesLine importationPucesLine)
      {
        setResponsePage(new ImportationErreurPage(importationPucesLine,
            getPage()));
      }
    });

    add(new ImportationPucesLineDataViewPanel("linesDataView",
        importationPuces
            .getLinesByStatus(ImportationLineStatus.IMPORTE),
        false, true)
    {
      private static final long serialVersionUID = 1L;
View Full Code Here


  private void createComponents()
  {
    List<ImportationPucesLine> lineAsList = new ArrayList<ImportationPucesLine>();
    lineAsList.add(importationPucesLine);

    add(new ImportationPucesLineDataViewPanel("linesDataView", lineAsList,
        false, false));
    add(new ImportationErreurPanel("erreursDataView", importationPucesLine
        .getErreursImportation()));
    add(new Link("retour")
    {
View Full Code Here

      }
    });

    form.add(new ImportationIgnoredLinesPanel("ignoredLines",
        importationPuces.getIgnoredLines()));
    form.add(new ImportationPucesLineDataViewPanel("linesDataView",
        importationPuces.getLines(), true, false));
    add(form);
  }
View Full Code Here

TOP

Related Classes of org.xrace.view.common.importation.puces.ImportationPucesLineDataViewPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.