Package org.jallinone.scheduler.activities.java

Examples of org.jallinone.scheduler.activities.java.ActAttachedDocVO


  /**
   * Callback method invoked when the user has clicked on the insert button
   * @param valueObject empty value object just created: the user can manage it to fill some attribute values
   */
  public void createValueObject(ValueObject valueObject) throws Exception {
    ActAttachedDocVO vo = (ActAttachedDocVO)valueObject;
    ScheduledActivityPK pk = (ScheduledActivityPK)grid.getOtherGridParams().get(ApplicationConsts.SCHEDULED_ACTIVITY_PK);
    vo.setCompanyCodeSys01SCH08(pk.getCompanyCodeSys01SCH06());
    vo.setProgressiveSch06SCH08(pk.getProgressiveSCH06());
  }
View Full Code Here


   * Callback method invoked when the user has double clicked on the selected row of the grid.
   * @param rowNumber selected row index
   * @param persistentObject v.o. related to the selected row
   */
  public void doubleClick(int rowNumber,ValueObject persistentObject) {
    ActAttachedDocVO vo = (ActAttachedDocVO)persistentObject;
    new DocumentController(
      null,
      new DocumentPK(vo.getCompanyCodeSys01SCH08(),vo.getProgressiveDoc14SCH08()),
      vo.getCompanyCodeSys01SCH08(),
      null
    );
  }
View Full Code Here

TOP

Related Classes of org.jallinone.scheduler.activities.java.ActAttachedDocVO

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.